/* ============================================================
   SEWER PIPE SOUND — Holding Page Stylesheet
   Raw. Underground. Human Made.
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --black:        #090807;
    --deep:         #0f0c0a;
    --tunnel-dark:  #1a1208;
    --tunnel-mid:   #2e1f0e;
    --amber:        #3d2b1a;
    --rust:         #c4500a;
    --rust-bright:  #e05a0a;
    --cream:        #e8dcc8;
    --cream-dim:    #a89880;
    --white:        #f0ece4;
    --grey:         #4a4540;
    --grey-light:   #6b6560;

    --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
    --font-body:    'Barlow Condensed', 'Arial Narrow', sans-serif;
    --font-prose:   'Barlow', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--black);
    color: var(--cream);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* ── GLOBAL TEXTURE & ATMOSPHERE ──────────────────────────── */

/* Film grain / noise overlay */
.noise-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100;
    opacity: 0.045;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 180px 180px;
}

/* Scanline effect */
.scanlines {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 99;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.04) 2px,
        rgba(0, 0, 0, 0.04) 4px
    );
}

/* Tunnel BG - atmospheric gradient suggesting underground depth */
.bg-tunnel {
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(ellipse 60% 50% at 50% 60%, #2e1a08 0%, #1a0d04 35%, transparent 70%),
        radial-gradient(ellipse 100% 80% at 50% 100%, #1a0f06 0%, transparent 60%),
        linear-gradient(180deg, #090807 0%, #0f0a06 40%, #181008 70%, #090807 100%);
}

/* Top ambient glow — like a distant light in the tunnel */
.bg-tunnel::after {
    content: '';
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(180, 100, 20, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.bg-vignette {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: radial-gradient(ellipse 90% 90% at 50% 50%, transparent 30%, rgba(0,0,0,0.7) 100%);
}

/* ── TYPOGRAPHY HELPERS ───────────────────────────────────── */
.orange-text {
    color: var(--rust);
}

/* ── SITE HEADER ──────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(180deg, rgba(9,8,7,0.95) 0%, transparent 100%);
}

/* Logo mark — the ||| in circle */
.logo-circle {
    width: 44px;
    height: 44px;
    border: 2px solid var(--cream-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: border-color 0.3s;
}
.logo-circle:hover { border-color: var(--rust); }

.logo-circle--lg {
    width: 72px;
    height: 72px;
    border-width: 3px;
}
.logo-circle--sm {
    width: 36px;
    height: 36px;
}

.logo-bars {
    display: flex;
    gap: 3px;
    align-items: center;
}
.logo-bars span {
    display: block;
    width: 3px;
    height: 16px;
    background: var(--cream-dim);
    border-radius: 1px;
}
.logo-circle--lg .logo-bars span {
    width: 4px;
    height: 24px;
}
.logo-circle--sm .logo-bars span {
    width: 2px;
    height: 12px;
}
.logo-circle:hover .logo-bars span { background: var(--rust); }

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream-dim);
}
.nav-divider { color: var(--grey); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2.5rem 5rem;
    overflow: hidden;
}

/* Decorative horizontal pipe lines */
.pipe {
    position: absolute;
    top: 50%;
    width: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--grey) 40%, var(--amber) 100%);
    opacity: 0.4;
}
.pipe-left  { left: 0; transform: translateY(-50%); }
.pipe-right { right: 0; transform: translateY(-50%) scaleX(-1); }

.pipe::before, .pipe::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--amber);
}
.pipe::before { right: 0; }
.pipe::after  { right: 20px; width: 4px; height: 4px; }

.hero-inner {
    max-width: 900px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-top-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream-dim);
    margin-bottom: 2.5rem;
    font-weight: 600;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.3s;
}

.signal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--rust);
    box-shadow: 0 0 6px var(--rust);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 6px var(--rust); }
    50% { opacity: 0.4; box-shadow: 0 0 2px var(--rust); }
}

/* ── HERO TITLE ───────────────────────────────────────────── */
.hero-title {
    display: flex;
    flex-direction: column;
    line-height: 0.85;
    margin-bottom: 1.5rem;
}

.title-line {
    font-family: var(--font-display);
    font-size: clamp(6rem, 18vw, 16rem);
    color: var(--cream);
    letter-spacing: -0.01em;
    display: block;
    position: relative;

    /* Distressed look via text-shadow stacking */
    text-shadow:
        3px 3px 0 rgba(0,0,0,0.8),
        -1px -1px 0 rgba(200,170,130,0.1),
        2px 0 8px rgba(0,0,0,0.6);

    opacity: 0;
    transform: translateY(30px);
}

.title-line.line-1 { animation: fadeUp 0.7s ease forwards 0.5s; }
.title-line.line-2 { animation: fadeUp 0.7s ease forwards 0.65s; }
.title-line.line-3 { animation: fadeUp 0.7s ease forwards 0.8s; }

/* Crack / texture effect on title letters */
.title-line::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    color: transparent;
    background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, transparent 50%);
    -webkit-background-clip: text;
    background-clip: text;
    pointer-events: none;
}

.hero-sub-block {
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 1s;
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(1rem, 3vw, 1.8rem);
    letter-spacing: 0.2em;
    color: var(--rust);
}

/* ── MANIFESTO PILLARS (RAW / UNDERGROUND / HUMAN MADE) ───── */
.manifesto-pillars {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 1.1s;
}

.pillar {
    padding: 0.4rem 1.2rem;
    border-left: 1px solid var(--grey);
    text-align: center;
}
.pillar:first-child { border-left: none; }

.pillar-label {
    font-family: var(--font-body);
    font-size: clamp(0.7rem, 1.5vw, 0.95rem);
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--cream-dim);
    text-transform: uppercase;
}

/* ── HERO STATEMENT ───────────────────────────────────────── */
.hero-statement {
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 1.2s;
}

.no-ai-line {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 4rem);
    color: var(--rust);
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 0.4rem;
    text-shadow: 0 0 30px rgba(196,80,10,0.3);
}

.real-line {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: var(--cream-dim);
    letter-spacing: 0.2em;
    font-weight: 700;
    text-transform: uppercase;
}

/* ── CTA BUTTONS ─────────────────────────────────────────── */
.cta-block {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 1.4s;
}

.cta-primary, .cta-secondary {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.9rem 2.2rem;
    transition: all 0.2s ease;
    position: relative;
}

.cta-primary {
    background: var(--rust);
    color: var(--black);
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.cta-primary:hover {
    background: var(--rust-bright);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196,80,10,0.4);
}

.cta-secondary {
    background: transparent;
    color: var(--cream-dim);
    border: 1px solid var(--grey);
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.cta-secondary:hover {
    color: var(--cream);
    border-color: var(--cream-dim);
    transform: translateY(-2px);
}

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ── SECTION SHARED ───────────────────────────────────────── */
section {
    position: relative;
    z-index: 2;
}

.section-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem 2.5rem;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--cream-dim);
    letter-spacing: 0.3em;
    white-space: nowrap;
    flex-shrink: 0;
}

.section-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--grey) 0%, transparent 100%);
}
.section-line:first-child {
    background: linear-gradient(270deg, var(--grey) 0%, transparent 100%);
}

/* ── MANIFESTO SECTION ────────────────────────────────────── */
.manifesto {
    border-top: 1px solid rgba(74,69,64,0.3);
}

.manifesto-opener {
    margin-bottom: 2.5rem;
    border-left: 3px solid var(--rust);
    padding-left: 1.5rem;
}

.opener-large {
    font-family: var(--font-body);
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.3;
}
.opener-large.accent {
    color: var(--rust);
    font-weight: 600;
    margin-top: 0.3rem;
}

.manifesto-body {
    font-family: var(--font-prose);
    font-size: 1.05rem;
    color: var(--cream-dim);
    line-height: 1.8;
    max-width: 680px;
    margin-bottom: 3rem;
}
.manifesto-body em {
    color: var(--cream);
    font-style: italic;
}
.manifesto-body p + p { margin-top: 1rem; }

/* ── RESONANCE BLOCK ─────────────────────────────────────── */
.manifesto-resonance {
    margin-bottom: 3rem;
    padding: 2.5rem;
    border: 1px solid rgba(74,69,64,0.4);
    background: rgba(30,20,10,0.4);
    position: relative;
}
.manifesto-resonance::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 100%;
    background: var(--rust);
}

.built-on {
    font-family: var(--font-body);
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.resonance-lines {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.resonance-line {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    font-family: var(--font-body);
}

.rl-left {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--cream);
    min-width: 120px;
}
.rl-mid {
    font-size: 0.8rem;
    color: var(--grey-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.rl-right {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    color: var(--rust);
}

/* ── REJECTIONS ──────────────────────────────────────────── */
.manifesto-rejections {
    margin-bottom: 3rem;
}
.rejection-header {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 700;
    color: var(--cream-dim);
    letter-spacing: 0.05em;
    line-height: 1.6;
}
.rejection-header strong { color: var(--cream); }
.rejection-footer {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 700;
    margin-top: 1rem;
    letter-spacing: 0.08em;
}

/* ── EMBRACE LIST ─────────────────────────────────────────── */
.manifesto-embraces {
    margin-bottom: 2rem;
}
.embraces-intro {
    font-family: var(--font-prose);
    font-size: 1rem;
    color: var(--cream-dim);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.embrace-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0.8rem;
}
.embrace-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--cream-dim);
    padding: 0.8rem 1rem;
    border: 1px solid rgba(74,69,64,0.35);
    background: rgba(20,13,6,0.4);
    transition: border-color 0.2s, background 0.2s;
}
.embrace-list li:hover {
    border-color: var(--rust);
    background: rgba(196,80,10,0.07);
    color: var(--cream);
}
.embrace-list li strong { color: var(--cream); }
.embrace-icon {
    color: var(--rust);
    font-size: 0.7rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

/* ── PRINCIPLES SECTION ───────────────────────────────────── */
.principles {
    border-top: 1px solid rgba(74,69,64,0.3);
    background: rgba(10,7,4,0.5);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1px;
    background: rgba(74,69,64,0.2);
    border: 1px solid rgba(74,69,64,0.2);
}

.principle-card {
    background: var(--deep);
    padding: 2rem 1.8rem;
    position: relative;
    overflow: hidden;
    transition: background 0.2s;
}
.principle-card:hover {
    background: rgba(20,12,5,0.95);
}
.principle-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0;
    height: 2px;
    background: var(--rust);
    transition: width 0.3s ease;
}
.principle-card:hover::before { width: 100%; }

.principle-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: rgba(74,69,64,0.25);
    line-height: 1;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}
.principle-card:hover .principle-num { color: rgba(196,80,10,0.2); }

.principle-title {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--cream);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.principle-body {
    font-family: var(--font-prose);
    font-size: 0.9rem;
    color: var(--cream-dim);
    line-height: 1.7;
}

/* ── SIGNAL / MAILING LIST SECTION ───────────────────────── */
.signal-section {
    border-top: 1px solid rgba(74,69,64,0.3);
    background: rgba(196,80,10,0.04);
}

.signal-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.signal-icon {
    margin-bottom: 1.5rem;
}

.signal-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 0.9;
    color: var(--cream);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.signal-body {
    font-family: var(--font-prose);
    font-size: 1rem;
    color: var(--cream-dim);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.signal-sub {
    font-family: var(--font-prose);
    font-size: 0.85rem;
    color: var(--grey-light);
    line-height: 1.6;
    font-style: italic;
}

/* ── FORM ─────────────────────────────────────────────────── */
.signal-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream-dim);
    font-weight: 600;
}

.form-group input,
.form-group select {
    background: rgba(20,13,6,0.8);
    border: 1px solid var(--grey);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 0.8rem 1rem;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
}
.form-group input::placeholder { color: var(--grey); }
.form-group input:focus,
.form-group select:focus {
    border-color: var(--rust);
    background: rgba(25,16,8,0.9);
}
.form-group select {
    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='%236b6560' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}
.form-group select option {
    background: #1a0f06;
    color: var(--cream);
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
}
.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    background: rgba(20,13,6,0.8);
    border: 1px solid var(--grey);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    margin-top: 0.1rem;
    position: relative;
    flex-shrink: 0;
    transition: border-color 0.2s;
}
.form-check input[type="checkbox"]:checked {
    background: var(--rust);
    border-color: var(--rust);
}
.form-check input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--black);
    font-size: 12px;
    font-weight: bold;
}
.form-check label {
    font-family: var(--font-prose);
    font-size: 0.8rem;
    color: var(--grey-light);
    line-height: 1.5;
    cursor: pointer;
}

.form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: var(--rust);
    color: var(--black);
    border: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    cursor: pointer;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    transition: all 0.2s ease;
    width: 100%;
    margin-top: 0.3rem;
}
.form-submit:hover {
    background: var(--rust-bright);
    box-shadow: 0 4px 20px rgba(196,80,10,0.4);
    transform: translateY(-2px);
}
.submit-arrow {
    font-size: 1.1rem;
    transition: transform 0.2s;
}
.form-submit:hover .submit-arrow { transform: translateX(4px); }

/* Success state */
.form-success {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
    border: 1px solid var(--rust);
    background: rgba(196,80,10,0.07);
}
.form-success.visible { display: block; }

.success-icon {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--rust);
    margin-bottom: 1rem;
    letter-spacing: 0.2em;
}
.success-title {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}
.success-body {
    font-family: var(--font-prose);
    color: var(--cream-dim);
    font-size: 0.95rem;
}

/* ── FOOTER QUOTE ─────────────────────────────────────────── */
.footer-quote {
    border-top: 1px solid rgba(74,69,64,0.3);
    border-bottom: 1px solid rgba(74,69,64,0.3);
    text-align: center;
    background: rgba(10,7,4,0.6);
}

.big-quote {
    font-family: var(--font-prose);
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    font-style: italic;
    color: var(--cream-dim);
    line-height: 1.8;
    max-width: 780px;
    margin: 0 auto;
    quotes: none;
}
.big-quote .orange-text {
    font-style: normal;
    font-weight: 400;
}

/* ── SITE FOOTER ──────────────────────────────────────────── */
.site-footer {
    background: rgba(5,3,1,0.95);
    border-top: 1px solid rgba(74,69,64,0.2);
    padding: 2rem 2.5rem;
    position: relative;
    z-index: 2;
}

.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}
.footer-brand-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--cream);
    letter-spacing: 0.1em;
}
.footer-brand-sub {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--cream-dim);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-meta {
    text-align: right;
}
.footer-copy {
    font-family: var(--font-prose);
    font-size: 0.8rem;
    color: var(--grey-light);
    margin-bottom: 0.2rem;
}
.footer-statement {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    font-weight: 700;
    text-transform: uppercase;
}

/* ── REVEAL ON SCROLL ─────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 768px) {
    .site-header { padding: 1rem 1.2rem; }

    .hero { padding: 7rem 1.5rem 4rem; }

    .pipe { display: none; }

    .signal-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-meta { text-align: left; }

    .section-inner { padding: 3.5rem 1.5rem; }

    .manifesto-pillars { gap: 0.5rem; }

    .resonance-line { flex-wrap: wrap; }

    .principles-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .cta-block { flex-direction: column; align-items: center; }
    .cta-primary, .cta-secondary { width: 100%; text-align: center; }
    .embrace-list { grid-template-columns: 1fr; }
}
