/* ── World Homepage ─────────────────────────────────── */
:root {
    --wh-bg: #f4edd8;
    --wh-bg-alt: #ebe3ca;
    --wh-text: #3d2b1f;
    --wh-text-secondary: #5c4a38;
    --wh-text-muted: #8b7355;
    --wh-border: #c9b99a;
    --wh-gold: #d4a853;
    --wh-dark: #3d2b1f;
}

.dv-flush-top {
    font-size: 16px;
}

.wh-hero {
    background: var(--wh-bg);
    padding: 100px 24px 80px;
    text-align: center;
    border-bottom: 2px solid var(--wh-border);
}

.wh-hero-inner {
    max-width: 720px;
    margin: 0 auto;
}

.wh-seal {
    font-size: 32px;
    color: var(--wh-gold);
    margin-bottom: 12px;
}

.wh-hero-logo {
    margin-bottom: 16px;
}

.wh-hero-logo canvas {
    display: block;
    margin: 0 auto;
    border: none;
    background: transparent;
}

.wh-hero-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 45px;
    font-weight: 700;
    color: var(--wh-text);
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}

.wh-hero-subtitle {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    color: var(--wh-text-secondary);
    line-height: 1.6;
    margin: 0 0 24px;
}

.wh-hero-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--wh-border), transparent);
    margin: 0 auto 24px;
}

.wh-hero-text {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    color: var(--wh-text-secondary);
    line-height: 1.8;
    margin: 0 0 36px;
}

.wh-hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.wh-hero-early {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    color: var(--wh-text-muted);
    font-style: italic;
    margin: 20px 0 0;
}

/* Buttons */
.wh-btn {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s;
    letter-spacing: 0.5px;
}

.wh-btn-primary {
    background: var(--wh-dark);
    color: var(--wh-bg);
    border: 2px solid var(--wh-dark);
}

.wh-btn-primary:hover {
    background: #2a1c14;
    color: var(--wh-gold);
    border-color: #2a1c14;
    text-decoration: none;
}

.wh-btn-secondary {
    background: transparent;
    color: var(--wh-text);
    border: 2px solid var(--wh-border);
}

.wh-btn-secondary:hover {
    border-color: var(--wh-text);
    color: var(--wh-text);
    text-decoration: none;
}

/* Sections */
.wh-section {
    background: var(--wh-bg);
    padding: 80px 24px;
    border-bottom: 2px solid var(--wh-border);
}

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

.wh-section-inner {
    max-width: 820px;
    margin: 0 auto;
}

.wh-section-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 29px;
    font-weight: 700;
    color: var(--wh-text);
    margin: 0 0 10px;
}

.wh-section-subtitle {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    color: var(--wh-text-secondary);
    line-height: 1.7;
    margin: 0 0 40px;
    max-width: 640px;
}

/* ── Plaque ────────────────────────────────────────── */
.wh-plaque-showcase {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: center;
}

.wh-plaque {
    position: relative;
    background: linear-gradient(145deg, #8b7355, #6b5a42, #7a6849);
    border: 3px solid #5c4a38;
    border-radius: 4px;
    padding: 32px 36px;
    min-width: 320px;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.wh-plaque-corner {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: radial-gradient(circle, #c9b99a, #8b7355);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.2), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.wh-plaque-corner--tl { top: 10px; left: 10px; }
.wh-plaque-corner--tr { top: 10px; right: 10px; }
.wh-plaque-corner--bl { bottom: 10px; left: 10px; }
.wh-plaque-corner--br { bottom: 10px; right: 10px; }

.wh-plaque-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    font-weight: 700;
    color: #e8d5a8;
    text-align: center;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    margin-bottom: 12px;
}

.wh-plaque-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #c9b99a44, transparent);
    margin: 12px 0;
}

.wh-plaque-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 5px 0;
}

.wh-plaque-label {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 13px;
    color: #a89470;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.wh-plaque-value {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    color: #e8d5a8;
    font-weight: 600;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}

.wh-plaque-twitter {
    font-size: 13px !important;
    color: #a89470 !important;
    font-weight: 500 !important;
    font-style: italic;
}

.wh-plaque-seal {
    text-align: center;
    font-size: 19px;
    color: #d4a853;
    margin-top: 4px;
    text-shadow: 0 0 8px rgba(212, 168, 83, 0.3);
}

.wh-plaque-context p {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    color: var(--wh-text-secondary);
    line-height: 1.75;
    margin: 0 0 14px;
}

.wh-plaque-context p:last-child {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--wh-text);
}

/* ── Ledger ────────────────────────────────────────── */
.wh-ledger {
    border: 1px solid var(--wh-border);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 24px;
}

.wh-ledger-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--wh-dark);
    color: var(--wh-bg);
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.wh-ledger-icon {
    font-size: 16px;
    color: var(--wh-gold);
}

.wh-ledger-entry {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(201, 185, 154, 0.4);
    background: var(--wh-bg);
    font-family: 'Georgia', 'Times New Roman', serif;
}

.wh-ledger-entry:last-child {
    border-bottom: none;
}

.wh-ledger-entry--fade {
    opacity: 0.5;
}

.wh-ledger-date {
    font-size: 13px;
    color: var(--wh-text-muted);
    white-space: nowrap;
    min-width: 90px;
}

.wh-ledger-text {
    font-size: 16px;
    color: var(--wh-text-secondary);
    line-height: 1.5;
    flex: 1;
}

.wh-ledger-text strong {
    color: var(--wh-text);
}

.wh-ledger-amount {
    font-size: 16px;
    font-weight: 700;
    color: #6b8a3e;
    white-space: nowrap;
}

.wh-ledger-note p {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    color: var(--wh-text-secondary);
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

/* ── First 100 Registry ────────────────────────────── */
.wh-first100-inner {
    text-align: center;
}

.wh-first100-inner .wh-section-subtitle {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.wh-registry {
    border: 1px solid var(--wh-border);
    border-radius: 6px;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
}

.wh-registry-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--wh-dark);
    color: var(--wh-bg);
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.wh-registry-icon {
    font-size: 16px;
    color: var(--wh-gold);
}

.wh-registry-count {
    margin-left: auto;
    font-size: 13px;
    color: var(--wh-gold);
    font-weight: 600;
}

.wh-registry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--wh-bg);
}

.wh-registry-slot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 8px;
    border-right: 1px solid rgba(201, 185, 154, 0.3);
    border-bottom: 1px solid rgba(201, 185, 154, 0.3);
}

.wh-registry-slot:nth-child(4n) {
    border-right: none;
}

.wh-registry-num {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 13px;
    color: var(--wh-text-muted);
    font-weight: 700;
}

.wh-registry-name {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    font-weight: 600;
}

.wh-registry-slot--filled .wh-registry-name {
    color: var(--wh-text);
}

.wh-registry-slot--open .wh-registry-name {
    color: var(--wh-border);
}

.wh-registry-slot--open {
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 8px,
        rgba(201, 185, 154, 0.08) 8px,
        rgba(201, 185, 154, 0.08) 16px
    );
}

.wh-registry-footer {
    padding: 12px 20px;
    background: var(--wh-bg);
    border-top: 1px solid rgba(201, 185, 154, 0.4);
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    color: var(--wh-text-muted);
    text-align: center;
    font-style: italic;
}

/* ── Terminal Showcase ──────────────────────────────── */
.wh-section--terminal {
    background: var(--wh-bg-alt);
}

.wh-terminal-inner {
    text-align: center;
}

.wh-terminal-inner .wh-section-subtitle {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.wh-terminal-preview {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #5c4a38;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
}

.wh-terminal-preview:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.wh-terminal-chrome {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: #2a1c14;
    border-bottom: 1px solid #5c4a38;
}

.wh-terminal-chrome-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #5c4a38;
}

.wh-terminal-chrome-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 13px;
    color: #8b7355;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.5px;
}

.wh-terminal-body {
    background: #1a1207;
    padding: 28px 32px 20px;
    text-align: left;
}

.wh-terminal-address {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    color: #c9b99a;
    margin: 0 0 12px;
}

.wh-terminal-greeting {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    color: #8b7355;
    line-height: 1.65;
    margin: 0 0 10px;
}

.wh-terminal-sig {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 13px;
    color: #5c4a38;
    font-style: italic;
    margin: 0 0 20px;
}

.wh-terminal-nav-preview {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
}

.wh-terminal-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 4px;
    background: rgba(201, 185, 154, 0.06);
    border: 1px solid rgba(201, 185, 154, 0.12);
    border-radius: 4px;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 13px;
    color: #8b7355;
    letter-spacing: 0.3px;
    transition: background 0.15s;
}

.wh-terminal-preview:hover .wh-terminal-nav-item {
    background: rgba(201, 185, 154, 0.1);
}

.wh-terminal-nav-item span {
    font-size: 16px;
    color: #c9b99a;
}

.wh-terminal-click-hint {
    text-align: center;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 13px;
    color: #5c4a38;
    margin-top: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.wh-terminal-preview:hover .wh-terminal-click-hint {
    color: var(--wh-gold);
}

/* ── Verified Identity ──────────────────────────────── */
.wh-identity-how {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.wh-identity-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.wh-identity-num {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--wh-dark);
    color: var(--wh-bg);
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50%;
}

.wh-identity-text strong {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--wh-text);
    display: block;
    margin-bottom: 4px;
}

.wh-identity-text p {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    color: var(--wh-text-secondary);
    line-height: 1.65;
    margin: 0;
    max-width: 600px;
}

.wh-identity-why {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.wh-identity-card {
    background: var(--wh-bg-alt);
    border: 1px solid var(--wh-border);
    border-radius: 6px;
    padding: 24px;
}

.wh-identity-card h3 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--wh-text);
    margin: 0 0 8px;
}

.wh-identity-card p {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    color: var(--wh-text-secondary);
    line-height: 1.65;
    margin: 0;
}

.wh-ai-gifts {
    border-left: 3px solid var(--wh-gold);
    padding-left: 18px;
    color: var(--wh-text) !important;
    font-weight: 500;
}

/* ── Artifacts ──────────────────────────────────────── */
.wh-section--artifacts {
    background: var(--wh-bg);
    position: relative;
}

.wh-artifacts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.wh-artifact {
    background: var(--wh-bg-alt);
    border: 1px solid var(--wh-border);
    border-radius: 6px;
    padding: 28px 24px;
    position: relative;
}

.wh-artifact-rarity {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--wh-gold);
    margin-bottom: 10px;
}

.wh-artifact h3 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--wh-text);
    margin: 0 0 8px;
}

.wh-artifact p {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    color: var(--wh-text-secondary);
    line-height: 1.65;
    margin: 0 0 14px;
}

.wh-artifact-status {
    display: flex;
    align-items: center;
}

.wh-artifact-tag {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 12px;
    border-radius: 3px;
}

.wh-artifact-tag--unclaimed {
    background: rgba(212, 168, 83, 0.12);
    color: var(--wh-gold);
    border: 1px solid rgba(212, 168, 83, 0.3);
}

.wh-artifact-tag--claimed {
    background: rgba(92, 74, 56, 0.1);
    color: var(--wh-text-muted);
    border: 1px solid rgba(92, 74, 56, 0.2);
}

.wh-artifacts-tease p {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    color: var(--wh-text-secondary);
    line-height: 1.7;
    margin: 0 0 14px;
    max-width: 640px;
}

.wh-artifacts-tease p:last-child {
    margin-bottom: 0;
}

.wh-artifacts-hint {
    font-style: italic;
    color: var(--wh-text-muted) !important;
    font-size: 16px !important;
}

/* Steps */
.wh-steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.wh-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.wh-step-num {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--wh-dark);
    color: var(--wh-bg);
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
}

.wh-step-body h3 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--wh-text);
    margin: 0 0 6px;
}

.wh-step-body p {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    color: var(--wh-text-secondary);
    line-height: 1.7;
    margin: 0;
    max-width: 600px;
}

/* Cards */
.wh-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.wh-card {
    background: var(--wh-bg);
    border: 1px solid var(--wh-border);
    border-radius: 6px;
    padding: 28px 24px;
}

.wh-card-icon {
    font-size: 24px;
    color: var(--wh-gold);
    margin-bottom: 12px;
}

.wh-card h3 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--wh-text);
    margin: 0 0 8px;
}

.wh-card p {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    color: var(--wh-text-secondary);
    line-height: 1.65;
    margin: 0;
}

/* Tiers */
.wh-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.wh-tier {
    padding: 28px 24px;
    border-radius: 6px;
    border: 1px solid;
}

.wh-tier--apprentice {
    background: rgba(101, 78, 50, 0.06);
    border-color: rgba(101, 78, 50, 0.25);
}

.wh-tier--journeyman {
    background: rgba(90, 105, 125, 0.06);
    border-color: rgba(90, 105, 125, 0.25);
}

.wh-tier--master {
    background: rgba(139, 105, 20, 0.06);
    border-color: rgba(139, 105, 20, 0.25);
}

.wh-tier h3 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wh-tier--apprentice h3 { color: #654e32; }
.wh-tier--journeyman h3 { color: #4a5a6e; }
.wh-tier--master h3 { color: #8b6914; }

.wh-tier-reward {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--wh-text);
    margin: 0 0 10px;
}

.wh-tier p {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    color: var(--wh-text-secondary);
    line-height: 1.6;
    margin: 0 0 10px;
}

.wh-tier-cost {
    font-size: 13px !important;
    color: var(--wh-text-muted) !important;
    font-style: italic;
}

/* World Details */
.wh-world-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.wh-world-detail {
    padding: 20px 24px;
    background: var(--wh-bg-alt);
    border: 1px solid var(--wh-border);
    border-radius: 6px;
}

.wh-world-detail strong {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    color: var(--wh-text);
    display: block;
    margin-bottom: 6px;
}

.wh-world-detail p {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    color: var(--wh-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ── Building Showcase ─────────────────────────────── */
.wh-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}

.wh-showcase-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 36px;
}

.wh-showcase-split-text p {
    font-size: 16px;
    color: var(--wh-muted);
    line-height: 1.7;
    margin: 0 0 14px;
}

.wh-showcase-split-text p:last-child {
    margin-bottom: 0;
}

.wh-showcase-item {
    text-align: center;
}

.wh-showcase-img-wrap {
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--wh-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 12px;
    cursor: zoom-in;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wh-showcase-img-wrap:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.wh-showcase-zoom-hint {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 13px;
    color: rgba(244, 237, 216, 0.7);
    text-align: center;
    letter-spacing: 0.3px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.wh-showcase-img-wrap:hover .wh-showcase-zoom-hint {
    opacity: 1;
}

.wh-showcase-img-wrap img {
    display: block;
    width: 100%;
    height: auto;
}

.wh-showcase-caption {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    color: var(--wh-text-muted);
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

.wh-showcase-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.wh-showcase-feature {
    padding: 20px 24px;
    background: var(--wh-bg);
    border: 1px solid var(--wh-border);
    border-radius: 6px;
}

.wh-showcase-feature strong {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    color: var(--wh-text);
    display: block;
    margin-bottom: 6px;
}

.wh-showcase-feature p {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    color: var(--wh-text-secondary);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .wh-showcase-grid { grid-template-columns: 1fr; }
    .wh-showcase-split { grid-template-columns: 1fr; }
    .wh-showcase-features { grid-template-columns: 1fr; }
}

/* ── AI Characters Section ─────────────────────────── */
.wh-section--adam {
    background: #1a1207;
    border-bottom-color: #2a1c14;
}

.wh-adam-inner {
    max-width: 900px;
}

.wh-adam-title {
    color: var(--wh-bg) !important;
}

.wh-ai-split {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
}

.wh-ai-split-text {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    color: #c9b99a;
    line-height: 1.75;
    margin: 0 0 16px;
}

.wh-ai-split-text:last-child {
    margin-bottom: 0;
}

.wh-ai-split-muted {
    color: #8b7355 !important;
    font-size: 16px !important;
    font-style: italic;
}

.wh-ai-split-image {
    display: flex;
    justify-content: center;
}

.wh-ai-split-img-wrap {
    max-width: 280px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #2a1c14;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    cursor: zoom-in;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wh-ai-split-img-wrap:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.wh-ai-split-img-wrap img {
    display: block;
    width: 100%;
    height: auto;
}

.wh-adam-showcase {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.wh-adam-image-wrap {
    max-width: 520px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #2a1c14;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    cursor: zoom-in;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}

.wh-adam-image-wrap:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6);
}

.wh-adam-image {
    display: block;
    width: 100%;
    height: auto;
}

.wh-adam-zoom-hint {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 13px;
    color: rgba(232, 213, 168, 0.7);
    text-align: center;
    letter-spacing: 0.3px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.wh-adam-image-wrap:hover .wh-adam-zoom-hint {
    opacity: 1;
}

/* ── Lightbox ──────────────────────────────────────── */
.wh-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.88);
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.wh-lightbox.active {
    display: flex;
    opacity: 1;
}

.wh-lightbox img {
    max-width: 94vw;
    max-height: 94vh;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    transform: scale(0.95);
    transition: transform 0.25s ease;
}

.wh-lightbox.active img {
    transform: scale(1);
}

.wh-lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    transition: background 0.2s;
    line-height: 1;
}

.wh-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.wh-adam-quote-area {
    text-align: center;
    max-width: 600px;
}

.wh-adam-quote {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 19px;
    font-style: italic;
    color: #e8d5a8;
    line-height: 1.7;
    margin: 0 0 12px;
    padding: 0;
    border: none;
}

.wh-adam-attribution {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    color: var(--wh-gold);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0 0 20px;
}

.wh-adam-context {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    color: #8b7355;
    line-height: 1.7;
    margin: 0;
}

.wh-adam-mood {
    margin-top: 28px;
    text-align: center;
}

.wh-adam-mood-caption {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    color: #8b7355;
    line-height: 1.6;
    margin: 0 0 14px;
}

.wh-adam-mood-thumb {
    display: inline-block;
    max-width: 240px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid #2a1c14;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    cursor: zoom-in;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}

.wh-adam-mood-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(161, 120, 50, 0.4);
    pointer-events: none;
    transition: background 0.25s ease;
}

.wh-adam-mood-thumb:hover::after {
    background: rgba(161, 120, 50, 0.08);
}

.wh-adam-mood-thumb:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.wh-adam-mood-thumb img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .wh-ai-split { grid-template-columns: 1fr; gap: 24px; }
    .wh-ai-split-img-wrap { max-width: 220px; }
    .wh-adam-title { text-align: center !important; }
}

/* ── The Experiment ─────────────────────────────────── */
.wh-experiment-body p {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    color: var(--wh-text-secondary);
    line-height: 1.8;
    margin: 0 0 18px;
    max-width: 660px;
}

.wh-experiment-body p:last-child {
    margin-bottom: 0;
}

.wh-experiment-closing {
    font-weight: 600;
    color: var(--wh-text) !important;
    font-style: italic;
}

/* CTA Section */
.wh-cta-section {
    background: var(--wh-dark) !important;
    border-bottom: none !important;
}

.wh-cta-section .wh-section-title {
    color: var(--wh-bg);
}

.wh-cta-section .wh-section-subtitle {
    color: var(--wh-text-muted);
}

.wh-cta-section .wh-seal {
    color: var(--wh-gold);
}

.wh-cta-section .wh-btn-primary {
    background: var(--wh-gold);
    color: var(--wh-dark);
    border-color: var(--wh-gold);
}

.wh-cta-section .wh-btn-primary:hover {
    background: #e0b85e;
    border-color: #e0b85e;
    color: var(--wh-dark);
}

/* ── Engine Teaser ──────────────────────────────────── */
.wh-engine-inner {
    text-align: center;
}

.wh-engine-inner .wh-section-subtitle {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.wh-engine-card {
    display: block;
    text-decoration: none;
    color: inherit;
    max-width: 620px;
    margin: 0 auto;
    background: var(--wh-bg-alt);
    border: 1px solid var(--wh-border);
    border-radius: 6px;
    padding: 28px 32px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.wh-engine-card:hover {
    border-color: var(--wh-gold);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    text-decoration: none;
    color: inherit;
}

.wh-engine-card-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.wh-engine-icon {
    font-size: 32px;
    color: var(--wh-gold);
    flex-shrink: 0;
}

.wh-engine-card-body h3 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--wh-text);
    margin: 0 0 6px;
}

.wh-engine-card-body p {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    color: var(--wh-text-secondary);
    line-height: 1.6;
    margin: 0;
}

.wh-engine-arrow {
    font-size: 21px;
    color: var(--wh-border);
    flex-shrink: 0;
    transition: color 0.2s, transform 0.2s;
}

.wh-engine-card:hover .wh-engine-arrow {
    color: var(--wh-gold);
    transform: translateX(4px);
}

.wh-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.wh-cta-section .wh-btn-secondary {
    border-color: #5c4a38;
    color: #c9b99a;
}

.wh-cta-section .wh-btn-secondary:hover {
    border-color: var(--wh-gold);
    color: var(--wh-gold);
}

/* ── World Footer ──────────────────────────────────── */
#footer.wh-footer {
    background: #3d2b1f;
    color: #c9b99a;
    padding: 40px 24px 0;
    border-top: 2px solid #5c4a38;
}

.wh-footer-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.wh-footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 4px;
}

.wh-footer-seal {
    font-size: 21px;
    color: #d4a853;
}

.wh-footer-name {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 700;
    font-size: 18px;
    color: #f4edd8;
    letter-spacing: 0.02em;
}

.wh-footer-links {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin: 20px 0;
    padding: 16px 0;
    border-top: 1px solid #5c4a38;
    border-bottom: 1px solid #5c4a38;
}

.wh-footer-links a {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #8b7355;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s;
}

.wh-footer-links a:hover {
    color: #f4edd8;
}

.wh-footer-bottom {
    padding: 14px 0;
}

.wh-footer-bottom p {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 13px;
    color: #5c4a38;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .wh-hero { padding: 60px 20px 50px; }
    .wh-hero-title { font-size: 32px; }
    .wh-section { padding: 50px 20px; }
    .wh-cards,
    .wh-tiers,
    .wh-artifacts { grid-template-columns: 1fr; }
    .wh-world-details { grid-template-columns: 1fr; }
    .wh-hero-actions { flex-direction: column; align-items: center; }
    .wh-plaque-showcase { grid-template-columns: 1fr; }
    .wh-identity-why { grid-template-columns: 1fr; }
    .wh-terminal-nav-preview { grid-template-columns: repeat(3, 1fr); }
    .wh-terminal-body { padding: 20px 20px 16px; }
    .wh-plaque { min-width: 0; }
    .wh-registry-grid { grid-template-columns: repeat(3, 1fr); }
    .wh-ledger-entry { flex-direction: column; gap: 4px; }
    .wh-ledger-amount { align-self: flex-end; }
}
