/* =========================================================================
   monopole.design — burnt-orange · inflated-3d · horizontal-scroll
   Palette: #C1440E #E8D5B8 #0E0A06 #A0613A #E85D1A #2A1008 #7A6050 #1C1410
   Typography: Cormorant Garamond (content) · Inter (UI mono)
   ========================================================================= */

:root {
    --c-burnt: #C1440E;
    --c-ember: #E85D1A;
    --c-pale-ember: #E8D5B8;
    --c-cream: #F5E1C8;
    --c-terracotta: #A0613A;
    --c-mute: #7A6050;
    --c-charcoal: #1C1410;
    --c-sienna: #2A1008;
    --c-umber: #0E0A06;

    --rail-width: 500vw;
    --margin-edge: 48px;

    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--c-charcoal);
    color: var(--c-cream);
    font-family: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
    font-feature-settings: 'liga' 1, 'kern' 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    position: relative;
    background:
        radial-gradient(ellipse at 18% 40%, rgba(193, 68, 14, 0.08), transparent 55%),
        radial-gradient(ellipse at 82% 70%, rgba(232, 93, 26, 0.06), transparent 60%),
        var(--c-charcoal);
}

/* Subtle grain on the body, very faint, evokes pen-on-paper */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.07;
    mix-blend-mode: overlay;
    background-image:
        radial-gradient(circle at 25% 30%, rgba(245, 225, 200, 0.5) 0.5px, transparent 1.2px),
        radial-gradient(circle at 75% 70%, rgba(245, 225, 200, 0.4) 0.5px, transparent 1.2px);
    background-size: 3px 3px, 5px 5px;
}

/* =========================================================================
   THE RAIL — horizontal strip
   ========================================================================= */

.rail {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: var(--rail-width);
    height: 100vh;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.chamber {
    position: relative;
    flex: 0 0 auto;
    width: 100vw;
    height: 100vh;
    padding: var(--margin-edge);
    overflow: hidden;
    contain: layout style paint;
}

.chamber-meta {
    position: absolute;
    top: var(--margin-edge);
    left: var(--margin-edge);
    display: flex;
    gap: 10px;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-mute);
    z-index: 5;
}

.meta-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-ember);
    box-shadow: 0 0 8px rgba(232, 93, 26, 0.6);
}

.ui-mono {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-mute);
}

.ui-mute {
    opacity: 0.65;
}

/* =========================================================================
   GLOBAL UI FRAME (corners + rail track + hint)
   ========================================================================= */

.ui-frame {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 50;
}

.ui-corner {
    position: absolute;
    display: flex;
    gap: 10px;
    align-items: center;
    pointer-events: auto;
}

.ui-corner-tl { top: 24px; left: 24px; }
.ui-corner-tr { top: 24px; right: 24px; gap: 6px; }
.ui-corner-bl { bottom: 24px; left: 24px; }
.ui-corner-br { bottom: 24px; right: 24px; gap: 8px; }

.ui-zone-num {
    color: var(--c-cream);
    font-size: 12px;
    transition: color 0.4s ease;
}

.ui-arrow {
    font-family: 'Inter', sans-serif;
    color: var(--c-cream);
    font-size: 14px;
    animation: arrowPulse 2.4s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); opacity: 0.8; }
    50% { transform: translateX(4px); opacity: 1; }
}

/* Rail progress at top */

.rail-track {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: min(420px, 50vw);
    height: 24px;
    pointer-events: auto;
}

.rail-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(122, 96, 80, 0.5);
    transform: translateY(-50%);
}

.rail-progress {
    position: absolute;
    top: 50%;
    left: 0;
    height: 1px;
    width: 0%;
    background: var(--c-cream);
    transform: translateY(-50%);
    transition: width 0.18s var(--ease-out);
    box-shadow: 0 0 6px rgba(245, 225, 200, 0.6);
}

.rail-marker {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: var(--c-mute);
    cursor: pointer;
    transition: color 0.3s ease;
}

.rail-marker:nth-child(3) { left: 0%; }
.rail-marker:nth-child(4) { left: 25%; }
.rail-marker:nth-child(5) { left: 50%; }
.rail-marker:nth-child(6) { left: 75%; }
.rail-marker:nth-child(7) { left: 100%; }

.rail-marker svg {
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: chevBounce 2s var(--ease-spring) infinite;
}

.rail-marker span {
    font-size: 9px;
    letter-spacing: 0.14em;
}

.rail-marker.active { color: var(--c-cream); }

@keyframes chevBounce {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.78); }
}

.hint-bar {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--c-mute);
    transition: opacity 0.6s ease;
}

.hint-bar.fade {
    opacity: 0;
}

/* =========================================================================
   APPEAR / BOUNCE-ENTER
   ========================================================================= */

.appear {
    opacity: 0;
    transform: translateY(60px) scale(0.85);
    transition: opacity 0.6s var(--ease-spring),
                transform 0.6s var(--ease-spring);
    transition-delay: calc((var(--stagger, 1) - 1) * 80ms);
    will-change: transform, opacity;
}

.appear.is-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* =========================================================================
   INFLATED-3D MIXIN (cards, button)
   ========================================================================= */

.inflated {
    position: relative;
    background: linear-gradient(135deg, #F5E1C8 0%, #C1440E 60%, #2A1008 100%);
    border-radius: 24px;
    box-shadow:
        inset 2px 2px 6px rgba(245, 225, 200, 0.30),
        inset -3px -4px 10px rgba(14, 10, 6, 0.45),
        0 2px 4px rgba(14, 10, 6, 0.40),
        0 8px 16px rgba(14, 10, 6, 0.25),
        0 24px 48px rgba(14, 10, 6, 0.18);
    transition: transform 0.45s var(--ease-spring),
                box-shadow 0.45s var(--ease-spring);
    will-change: transform, box-shadow;
}

.inflated:hover {
    transform: scale(1.04);
    box-shadow:
        inset 2px 2px 8px rgba(245, 225, 200, 0.35),
        inset -3px -4px 12px rgba(14, 10, 6, 0.50),
        0 4px 8px rgba(14, 10, 6, 0.35),
        0 12px 24px rgba(14, 10, 6, 0.22),
        0 32px 64px rgba(14, 10, 6, 0.14);
}

/* =========================================================================
   CHAMBER 1 — ENTRY
   ========================================================================= */

.chamber-entry {
    background:
        radial-gradient(ellipse at 30% 50%, rgba(193, 68, 14, 0.55) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 70%, rgba(232, 93, 26, 0.18) 0%, transparent 55%),
        var(--c-sienna);
}

.entry-stage {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 56px;
}

.entry-glyph-wrap {
    position: relative;
    width: 360px;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.entry-shadow {
    position: absolute;
    top: 60px;
    left: 60px;
    width: 100%;
    height: 100%;
    border-radius: 48% 52% 46% 54% / 50% 48% 52% 50%;
    background: var(--c-sienna);
    filter: blur(28px);
    opacity: 0.85;
    z-index: 1;
}

.entry-glyph {
    position: relative;
    z-index: 2;
    width: 320px;
    height: 320px;
    border-radius: 48% 52% 46% 54% / 50% 48% 52% 50%;
    background:
        radial-gradient(ellipse at 28% 22%, rgba(245, 225, 200, 0.95) 0%, rgba(245, 225, 200, 0.0) 36%),
        linear-gradient(135deg, #F5E1C8 0%, #E85D1A 38%, #C1440E 65%, #2A1008 100%);
    box-shadow:
        inset 6px 6px 22px rgba(245, 225, 200, 0.35),
        inset -10px -16px 36px rgba(14, 10, 6, 0.55),
        0 10px 30px rgba(14, 10, 6, 0.45),
        0 30px 80px rgba(14, 10, 6, 0.30);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: glyphBreathe 4s var(--ease-spring) infinite;
}

.entry-letter {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 220px;
    line-height: 1;
    color: var(--c-sienna);
    letter-spacing: 0.02em;
    text-shadow:
        -1px -1px 0 rgba(245, 225, 200, 0.4),
        2px 4px 8px rgba(14, 10, 6, 0.55);
    transform: translate(-4px, -8px);
}

.entry-highlight {
    position: absolute;
    top: 14%;
    left: 18%;
    width: 30%;
    height: 18%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(245, 225, 200, 0.85) 0%, rgba(245, 225, 200, 0) 70%);
    filter: blur(2px);
    pointer-events: none;
}

@keyframes glyphBreathe {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(0.965) rotate(-0.6deg); }
    50% { transform: scale(1.02) rotate(0.4deg); }
    75% { transform: scale(0.99) rotate(-0.2deg); }
}

.entry-caption {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.65;
    color: var(--c-pale-ember);
    text-align: center;
    max-width: 540px;
}

.entry-caption em {
    color: var(--c-cream);
    font-weight: 500;
    font-style: italic;
}

.entry-axis {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.axis-tick {
    width: 1px;
    height: 8px;
    background: var(--c-terracotta);
}

.axis-line {
    width: 240px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--c-terracotta), transparent);
    position: relative;
}

.entry-axis .axis-line + .axis-tick { display: none; }

.axis-label {
    color: var(--c-terracotta);
    font-size: 10px;
}

.entry-axis {
    flex-direction: row;
    gap: 12px;
    align-items: center;
}

/* =========================================================================
   CHAMBER 2 — MANIFESTO
   ========================================================================= */

.chamber-manifesto {
    background:
        linear-gradient(115deg, var(--c-sienna) 0%, var(--c-charcoal) 50%, var(--c-charcoal) 100%);
}

.manifesto-source {
    position: absolute;
    top: 50%;
    left: 4%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.source-core {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--c-cream) 0%, var(--c-ember) 60%, var(--c-burnt) 100%);
    box-shadow:
        0 0 0 2px rgba(193, 68, 14, 0.3),
        0 0 18px rgba(232, 93, 26, 0.7),
        0 0 40px rgba(232, 93, 26, 0.35);
}

.source-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid var(--c-burnt);
    animation: sourcePulse 2.4s ease-out infinite;
}

@keyframes sourcePulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3.5); opacity: 0; }
}

.source-label {
    color: var(--c-terracotta);
    font-size: 9px;
    margin-top: 14px;
    margin-left: 26px;
    white-space: nowrap;
}

.field-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.field-lines line {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: drawLine 2.2s var(--ease-out) forwards;
}

.chamber-manifesto.is-active .field-lines line {
    animation-play-state: running;
}

.field-lines line:nth-child(1) { animation-delay: 0.1s; }
.field-lines line:nth-child(2) { animation-delay: 0.2s; }
.field-lines line:nth-child(3) { animation-delay: 0.3s; }
.field-lines line:nth-child(4) { animation-delay: 0.4s; }
.field-lines line:nth-child(5) { animation-delay: 0.5s; }

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

.manifesto-title {
    position: absolute;
    top: 14%;
    left: 12%;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(56px, 8vw, 104px);
    line-height: 1.0;
    letter-spacing: 0.04em;
    color: var(--c-cream);
    z-index: 4;
    max-width: 60%;
}

.manifesto-title em {
    font-weight: 400;
    font-style: italic;
    color: var(--c-burnt);
}

.manifesto-blocks {
    position: absolute;
    inset: 0;
    z-index: 4;
}

.manifesto-block {
    position: absolute;
    top: var(--top, 30%);
    left: var(--left, 40%);
    transform: rotate(var(--angle, 0deg));
    transform-origin: left center;
    max-width: 360px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 19px;
    line-height: 1.55;
    color: var(--c-pale-ember);
    padding-left: 18px;
    border-left: 1px solid rgba(193, 68, 14, 0.55);
}

.manifesto-block em {
    color: var(--c-cream);
    font-weight: 500;
    font-style: italic;
}

.manifesto-block .block-tick {
    position: absolute;
    top: 50%;
    left: -6px;
    width: 11px;
    height: 11px;
    transform: translateY(-50%) rotate(45deg);
    border-top: 1px solid var(--c-burnt);
    border-right: 1px solid var(--c-burnt);
    background: var(--c-charcoal);
}

/* Override the .appear scale/translate for rotated blocks so rotation is preserved */
.manifesto-block.appear {
    transform: rotate(var(--angle, 0deg)) translateY(60px) scale(0.85);
    opacity: 0;
}

.manifesto-block.appear.is-in {
    transform: rotate(var(--angle, 0deg)) translateY(0) scale(1);
    opacity: 1;
}

/* =========================================================================
   CHAMBER 3 — WORK
   ========================================================================= */

.chamber-work {
    width: 150vw;
    background:
        linear-gradient(95deg, var(--c-charcoal) 0%, #14110D 50%, #1A0F0A 100%);
    padding: var(--margin-edge) 80px;
}

.work-heading {
    position: absolute;
    top: 14%;
    left: 80px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(72px, 9vw, 120px);
    line-height: 1.0;
    letter-spacing: 0.04em;
    color: var(--c-cream);
    z-index: 5;
}

.work-heading em {
    font-weight: 400;
    font-style: italic;
    color: var(--c-burnt);
}

.work-sub {
    position: absolute;
    top: calc(14% + 130px);
    left: 80px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 18px;
    color: var(--c-pale-ember);
    z-index: 5;
}

.work-rail {
    position: absolute;
    top: 0;
    left: 32%;
    width: 110vw;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 56px;
    padding-right: 80px;
}

.card {
    flex: 0 0 320px;
    height: 60vh;
    min-height: 440px;
    margin-top: var(--y-offset, 0);
    padding: 28px 28px 24px 28px;
    display: flex;
    flex-direction: column;
    color: var(--c-sienna);
    border-radius: 26px;
    cursor: pointer;
    /* Inflated treatment provided by .inflated mixin */
    background: linear-gradient(135deg, #F5E1C8 0%, #E8D5B8 22%, #C1440E 70%, #2A1008 100%);
}

.card-id {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    color: var(--c-sienna);
}

.card-id .ui-mono {
    color: rgba(42, 16, 8, 0.7);
    font-size: 10px;
}

.card-art {
    flex: 0 0 auto;
    width: 100%;
    aspect-ratio: 1 / 1;
    margin-bottom: 18px;
    background: rgba(42, 16, 8, 0.18);
    border-radius: 18px;
    box-shadow:
        inset 1px 2px 4px rgba(14, 10, 6, 0.4),
        inset -1px -2px 4px rgba(245, 225, 200, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-art svg {
    width: 80%;
    height: 80%;
    filter: drop-shadow(0 2px 4px rgba(14, 10, 6, 0.5));
}

.card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.1;
    color: var(--c-sienna);
    letter-spacing: 0.02em;
}

.card-desc {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(42, 16, 8, 0.85);
}

.card-desc em {
    font-style: italic;
    color: var(--c-sienna);
    font-weight: 500;
}

.card-tag {
    margin-top: 14px;
    align-self: flex-start;
    color: rgba(42, 16, 8, 0.7);
    font-size: 9px;
    padding: 4px 10px;
    border-radius: 12px;
    background: rgba(42, 16, 8, 0.18);
}

/* =========================================================================
   CHAMBER 4 — PROCESS
   ========================================================================= */

.chamber-process {
    background:
        radial-gradient(ellipse at 50% 50%, rgba(193, 68, 14, 0.10) 0%, transparent 55%),
        var(--c-charcoal);
    padding: var(--margin-edge) 80px;
}

.process-heading {
    position: absolute;
    top: 14%;
    left: 80px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(56px, 7vw, 92px);
    line-height: 1.0;
    letter-spacing: 0.04em;
    color: var(--c-cream);
    z-index: 5;
    max-width: 50%;
}

.process-heading em {
    font-weight: 400;
    font-style: italic;
    color: var(--c-burnt);
}

.process-stage {
    position: absolute;
    top: 0;
    right: 0;
    width: 70vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-svg {
    width: 100%;
    height: 70vh;
    max-height: 720px;
}

.process-path {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
}

.process-node {
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
    transition: opacity 0.5s ease, transform 0.5s var(--ease-spring);
}

.process-node.is-on {
    opacity: 1;
}

.process-labels text {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.process-labels text.is-on {
    opacity: 1;
}

.process-caption {
    position: absolute;
    bottom: 14%;
    left: 80px;
    max-width: 360px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 18px;
    line-height: 1.6;
    color: var(--c-pale-ember);
    padding-left: 18px;
    border-left: 1px solid rgba(160, 97, 58, 0.6);
    z-index: 5;
}

.process-caption em {
    color: var(--c-cream);
    font-weight: 500;
}

/* Angular divider above caption */
.process-caption::before {
    content: '';
    position: absolute;
    top: -36px;
    left: 0;
    width: 200px;
    height: 1px;
    background: var(--c-terracotta);
    opacity: 0.6;
    transform: rotate(-15deg);
    transform-origin: left center;
}

/* =========================================================================
   CHAMBER 5 — CONTACT
   ========================================================================= */

.chamber-contact {
    background:
        radial-gradient(ellipse at 50% 50%, var(--c-burnt) 0%, #8A2F08 35%, var(--c-sienna) 70%, var(--c-charcoal) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-converge {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.contact-converge line {
    stroke-dasharray: 2200;
    stroke-dashoffset: 2200;
    animation: drawLine 2.6s var(--ease-out) forwards;
    animation-play-state: paused;
}

.chamber-contact.is-active .contact-converge line {
    animation-play-state: running;
}

.contact-converge line:nth-child(1) { animation-delay: 0.05s; }
.contact-converge line:nth-child(2) { animation-delay: 0.1s; }
.contact-converge line:nth-child(3) { animation-delay: 0.15s; }
.contact-converge line:nth-child(4) { animation-delay: 0.2s; }
.contact-converge line:nth-child(5) { animation-delay: 0.25s; }
.contact-converge line:nth-child(6) { animation-delay: 0.3s; }

.contact-stage {
    position: relative;
    z-index: 4;
    width: min(880px, 80%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    text-align: center;
}

.contact-pre {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-style: italic;
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.45;
    color: var(--c-pale-ember);
    letter-spacing: 0.02em;
}

.contact-pre em {
    color: var(--c-cream);
    font-weight: 500;
}

.contact-button {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: clamp(360px, 36vw, 520px);
    height: clamp(180px, 22vh, 240px);
    border-radius: 32px;
    text-decoration: none;
    color: var(--c-sienna);
    background: linear-gradient(135deg, #F5E1C8 0%, #E8D5B8 18%, #E85D1A 50%, #C1440E 78%, #2A1008 100%);
    animation: btnPulse 3.2s var(--ease-spring) infinite;
}

@keyframes btnPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.015); }
}

.contact-button:hover {
    animation: none;
    transform: scale(1.04);
}

.contact-button-label {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(56px, 6vw, 84px);
    line-height: 1;
    color: var(--c-sienna);
    letter-spacing: 0.03em;
    text-shadow:
        -1px -1px 0 rgba(245, 225, 200, 0.35),
        2px 4px 6px rgba(14, 10, 6, 0.55);
}

.contact-button-sub {
    color: rgba(42, 16, 8, 0.75);
    font-size: 10px;
}

.contact-foot {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    width: 100%;
    text-align: left;
    margin-top: 8px;
}

.foot-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 14px;
    border-left: 1px solid rgba(245, 225, 200, 0.25);
}

.foot-col p {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.55;
    color: var(--c-pale-ember);
}

.foot-col em {
    color: var(--c-cream);
    font-weight: 500;
    font-style: italic;
}

.foot-col .ui-mono {
    color: rgba(245, 225, 200, 0.55);
    font-size: 10px;
}

/* =========================================================================
   APPEAR — preserve manifesto rotations (override applied above)
   ========================================================================= */

/* For .contact-button.appear we want it to also bounce in. Inherit defaults */
.contact-button.appear {
    transform: translateY(60px) scale(0.85);
    opacity: 0;
}
.contact-button.appear.is-in {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Stagger helpers via data-stagger attribute */
[data-stagger="1"] { --stagger: 1; }
[data-stagger="2"] { --stagger: 2; }
[data-stagger="3"] { --stagger: 3; }
[data-stagger="4"] { --stagger: 4; }
[data-stagger="5"] { --stagger: 5; }
[data-stagger="6"] { --stagger: 6; }

/* =========================================================================
   Reduced motion not implemented per project rules; keep animations.
   ========================================================================= */
