/* ============================================================
   VISTA360STUDIO — site.css
   ============================================================ */

:root {
    --ink: #15151a;
    --paper: #f3efe8;
    --brass: #c89b3c;
    --brass-light: #e0b85a;
    --panel: #1f1f25;
    --line: #d9d2c4;
    --muted: #8a8478;
    --serif: 'Fraunces', serif;
    --mono: 'Space Grotesk', monospace;
    --sans: 'Inter', sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
}

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

/* ===== Layout helpers ===== */
.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
}

section {
    padding: 100px 0;
}

@media (max-width: 720px) {
    section {
        padding: 64px 0;
    }

    .wrap {
        padding: 0 20px;
    }
}

.eyebrow {
    font-family: var(--mono);
    font-size: 0.76rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brass);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

    .eyebrow::before {
        content: '';
        width: 34px;
        height: 1px;
        background: var(--brass);
        flex-shrink: 0;
    }

h1, h2, h3 {
    font-family: var(--serif);
    font-weight: 600;
    letter-spacing: -0.01em;
}

h2 {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    margin-bottom: 20px;
}

.lead {
    font-size: 1.05rem;
    color: #4a463f;
    max-width: 560px;
}

/* ===== Scroll reveal ===== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ===== Header / Nav ===== */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(243, 239, 232, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow 0.3s;
}

    header.scrolled {
        box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    }

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
    max-width: 1180px;
    margin: 0 auto;
}

.logo {
    font-family: var(--mono);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

    .logo .ring {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        border: 2px solid var(--ink);
        position: relative;
        flex-shrink: 0;
        transition: border-color 0.2s;
    }

        .logo .ring::after {
            content: '';
            position: absolute;
            inset: 5px;
            border-radius: 50%;
            background: var(--brass);
            transition: background 0.2s;
        }

    .logo:hover .ring {
        border-color: var(--brass);
    }

nav ul {
    list-style: none;
    display: flex;
    gap: 34px;
}

nav a {
    font-family: var(--mono);
    font-size: 0.84rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 1px solid transparent;
    padding-bottom: 4px;
    transition: border-color 0.2s, color 0.2s;
}

    nav a:hover {
        border-color: var(--brass);
        color: var(--brass);
    }

.nav-cta {
    font-family: var(--mono);
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: var(--ink);
    color: var(--paper);
    padding: 10px 20px;
    border-radius: 2px;
    text-decoration: none;
    border: 1px solid var(--ink);
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

    .nav-cta:hover {
        background: var(--brass);
        border-color: var(--brass);
        color: var(--ink);
    }

.burger {
    display: none;
    font-family: var(--mono);
    font-size: 0.84rem;
    background: none;
    border: 1px solid var(--ink);
    padding: 8px 14px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

    .burger:hover {
        border-color: var(--brass);
        color: var(--brass);
    }

.mobile-nav {
    display: none;
}

    .mobile-nav.open {
        display: block;
    }

@media (max-width: 860px) {
    nav ul, .nav-cta {
        display: none;
    }

    .burger {
        display: block;
    }

    .mobile-nav {
        max-width: 1180px;
        margin: 0 auto;
    }

        .mobile-nav ul {
            list-style: none;
            padding: 10px 0 20px;
            display: flex;
            flex-direction: column;
            gap: 14px;
            font-family: var(--mono);
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.08em;
        }

        .mobile-nav a {
            text-decoration: none;
        }
}

/* ===== HERO ===== */
#hero {
    padding: 0;
    min-height: calc(100svh - 61px);
    display: grid;
    grid-template-rows: 1fr auto;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
    /* Diagonal gold accent line */
    .hero-bg::before {
        content: '';
        position: absolute;
        top: -10%;
        right: 42%;
        width: 1px;
        height: 130%;
        background: linear-gradient(180deg, transparent, var(--brass) 30%, var(--brass) 70%, transparent);
        opacity: 0.18;
        transform: rotate(-6deg);
        transform-origin: top center;
    }

.hero-inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 0;
    align-items: stretch;
    min-height: calc(100svh - 61px);
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }
}

/* Left column */
.hero-copy {
    padding: 80px 60px 80px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 640px;
}

@media (max-width: 1100px) {
    .hero-copy {
        padding: 60px 40px 60px 32px;
    }
}

@media (max-width: 900px) {
    .hero-copy {
        padding: 56px 20px 40px;
        max-width: 100%;
    }
}

.hero-copy .eyebrow {
    margin-bottom: 24px;
}

.hero-copy h1 {
    font-size: clamp(2.8rem, 6.5vw, 5rem);
    line-height: 1.02;
    letter-spacing: -0.025em;
}

    .hero-copy h1 em {
        font-style: italic;
        color: var(--brass);
        display: inline-block;
        position: relative;
    }
        /* Underline accent on italic word */
        .hero-copy h1 em::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 4px;
            width: 100%;
            height: 2px;
            background: var(--brass);
            opacity: 0.4;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.8s var(--ease-out-expo) 0.6s;
        }

        .hero-copy h1 em.line-drawn::after {
            transform: scaleX(1);
        }

.hero-copy p {
    margin: 28px 0 36px;
    font-size: 1.1rem;
    color: #4a463f;
    max-width: 500px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

/* Trust signals under CTAs */
.hero-trust {
    margin-top: 36px;
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.trust-item {
    font-family: var(--mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

    .trust-item::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--brass);
        opacity: 0.7;
    }

/* Scroll indicator */
.hero-scroll {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 48px;
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

.scroll-line {
    width: 40px;
    height: 1px;
    background: var(--muted);
    position: relative;
    overflow: hidden;
}

    .scroll-line::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--brass);
        animation: scan 2.2s ease-in-out infinite;
    }

@keyframes scan {
    0% {
        left: -100%;
    }

    50% {
        left: 0%;
    }

    100% {
        left: 100%;
    }
}

/* Right column — viewfinder */
.hero-visual {
    position: relative;
    background: linear-gradient(160deg, #2b2b32, #16161a 70%);
    overflow: hidden;
}

    .hero-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.78;
        transition: opacity 0.4s, transform 8s ease-out;
        transform: scale(1.04);
    }

    .hero-visual:hover img {
        opacity: 0.88;
        transform: scale(1.0);
    }

@media (max-width: 900px) {
    .hero-visual {
        aspect-ratio: 16 / 10;
        min-height: 280px;
    }
}

/* Viewfinder overlay */
.vf-frame {
    position: absolute;
    inset: 22px;
    pointer-events: none;
}

    .vf-frame .corner {
        position: absolute;
        width: 28px;
        height: 28px;
    }

    .vf-frame .tl {
        top: 0;
        left: 0;
        border-top: 2px solid var(--brass);
        border-left: 2px solid var(--brass);
    }

    .vf-frame .tr {
        top: 0;
        right: 0;
        border-top: 2px solid var(--brass);
        border-right: 2px solid var(--brass);
    }

    .vf-frame .bl {
        bottom: 0;
        left: 0;
        border-bottom: 2px solid var(--brass);
        border-left: 2px solid var(--brass);
    }

    .vf-frame .br {
        bottom: 0;
        right: 0;
        border-bottom: 2px solid var(--brass);
        border-right: 2px solid var(--brass);
    }

/* Center crosshair */
.vf-cross {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    pointer-events: none;
}

    .vf-cross::before,
    .vf-cross::after {
        content: '';
        position: absolute;
        background: var(--brass);
        opacity: 0.5;
    }

    .vf-cross::before {
        width: 1px;
        height: 100%;
        left: 50%;
        top: 0;
    }

    .vf-cross::after {
        height: 1px;
        width: 100%;
        top: 50%;
        left: 0;
    }

.vf-readout {
    position: absolute;
    left: 22px;
    bottom: 22px;
    font-family: var(--mono);
    font-size: 0.73rem;
    color: var(--brass);
    letter-spacing: 0.12em;
    display: flex;
    gap: 20px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}

    .vf-readout span b {
        color: #fff;
        font-weight: 500;
    }

.vf-rec {
    position: absolute;
    top: 22px;
    right: 22px;
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}

    .vf-rec::before {
        content: '';
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #e0533d;
        animation: pulse 2s infinite;
    }

/* Exposure bar — decorative element unique to this page */
.vf-exposure {
    position: absolute;
    right: 22px;
    bottom: 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    font-family: var(--mono);
    font-size: 0.64rem;
    color: rgba(200, 155, 60, 0.7);
    letter-spacing: 0.1em;
}

.exposure-bar {
    width: 3px;
    height: 60px;
    background: rgba(255,255,255,0.12);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

    .exposure-bar::after {
        content: '';
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 68%;
        background: var(--brass);
        border-radius: 2px;
        animation: expose 3s ease-in-out infinite alternate;
    }

@keyframes expose {
    from {
        height: 55%;
    }

    to {
        height: 82%;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }
}

/* ===== Marquee strip ===== */
.strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 17px 0;
    overflow: hidden;
    background: var(--ink);
    color: var(--paper);
}

.strip-inner {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    font-family: var(--mono);
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    animation: scroll 34s linear infinite;
}

    .strip-inner span {
        color: var(--brass);
        margin: 0 18px;
    }

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.strip:hover .strip-inner {
    animation-play-state: paused;
}

/* ===== Servicios ===== */
.services-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 52px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 900px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    border: 1px solid var(--line);
    padding: 34px;
    border-radius: 3px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s var(--ease-out-expo), border-color 0.3s;
    overflow: hidden;
}
    /* Brass fill on hover */
    .service-card::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--brass);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.35s var(--ease-out-expo);
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 20px 48px -20px rgba(0,0,0,0.22);
        border-color: transparent;
    }

    .service-card .tag {
        font-family: var(--mono);
        font-size: 0.7rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--brass);
    }

    .service-card h3 {
        font-size: 1.4rem;
    }

    .service-card p {
        color: #4a463f;
        font-size: 0.95rem;
        flex-grow: 1;
    }

    .service-card .meta {
        font-family: var(--mono);
        font-size: 0.76rem;
        color: var(--muted);
        border-top: 1px solid var(--line);
        padding-top: 14px;
        display: flex;
        justify-content: space-between;
    }

    .service-card.featured {
        background: var(--ink);
        color: var(--paper);
        border-color: var(--ink);
    }

        .service-card.featured::before {
            background: var(--brass-light);
        }

        .service-card.featured p {
            color: #cfc9bd;
        }

        .service-card.featured .meta {
            border-color: #3a3a40;
            color: #a39d8f;
        }

        .service-card.featured .tag {
            color: var(--brass);
        }

/* ===== Precios ===== */
.price-section {
    background: var(--ink);
    color: var(--paper);
}

    .price-section .eyebrow {
        color: var(--brass);
    }

.price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    margin-top: 50px;
}

@media (max-width: 900px) {
    .price-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.price-grid h2 {
    color: #fff;
}

.price-section .lead {
    color: #c4beaf;
}

.factor-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
    margin-top: 30px;
}

    .factor-table th,
    .factor-table td {
        text-align: left;
        padding: 15px 0;
        border-bottom: 1px solid #2e2e35;
    }

    .factor-table th {
        font-family: var(--mono);
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 0.14em;
        color: var(--brass);
        font-weight: 500;
    }

        .factor-table td:last-child,
        .factor-table th:last-child {
            text-align: right;
            font-family: var(--mono);
        }

.example-card {
    border: 1px solid #2e2e35;
    border-radius: 3px;
    padding: 26px 28px;
    margin-bottom: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: border-color 0.25s, background 0.25s;
}

    .example-card:hover {
        border-color: #4a4a55;
        background: rgba(255,255,255,0.03);
    }

    .example-card .exname {
        font-family: var(--serif);
        font-size: 1.15rem;
    }

    .example-card .exmeta {
        font-family: var(--mono);
        font-size: 0.76rem;
        color: var(--muted);
        margin-top: 4px;
    }

    .example-card .exshots {
        font-family: var(--mono);
        text-align: right;
        font-size: 0.85rem;
        color: #a39d8f;
        white-space: nowrap;
    }

        .example-card .exshots b {
            display: block;
            font-size: 1.65rem;
            color: var(--brass);
            font-weight: 500;
            line-height: 1.1;
        }

.hosting-note {
    margin-top: 28px;
    padding: 22px 26px;
    border: 1px dashed #3e3e46;
    border-radius: 3px;
    font-size: 0.92rem;
    color: #cfc9bd;
    line-height: 1.65;
}

    .hosting-note b {
        color: var(--brass);
        font-family: var(--mono);
        letter-spacing: 0.04em;
    }

/* ===== Proceso ===== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 50px;
    border-left: 1px solid var(--line);
}

@media (max-width: 900px) {
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

.process-step {
    padding: 30px 26px;
    border-right: 1px solid var(--line);
    border-top: 1px solid var(--line);
    position: relative;
    transition: background 0.25s;
}

    .process-step:hover {
        background: rgba(200,155,60,0.04);
    }

    .process-step .fstop {
        font-family: var(--mono);
        font-size: 0.82rem;
        color: var(--brass);
        letter-spacing: 0.1em;
        margin-bottom: 14px;
    }

    .process-step h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .process-step p {
        font-size: 0.91rem;
        color: #4a463f;
    }

/* ===== Galería ===== */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 42px;
}

@media (max-width: 760px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
}

    .gallery-item img {
        width: 100%;
        aspect-ratio: 1;
        object-fit: cover;
        filter: grayscale(20%);
        transition: filter 0.4s, transform 0.5s var(--ease-out-expo);
        display: block;
    }

    .gallery-item:hover img {
        filter: grayscale(0%);
        transform: scale(1.06);
    }
    /* Label on hover */
    .gallery-item::after {
        content: attr(data-label);
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 10px 12px;
        background: linear-gradient(transparent, rgba(21,21,26,0.75));
        font-family: var(--mono);
        font-size: 0.68rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.85);
        opacity: 0;
        transform: translateY(6px);
        transition: opacity 0.3s, transform 0.3s;
    }

    .gallery-item:hover::after {
        opacity: 1;
        transform: translateY(0);
    }

/* ===== Contacto ===== */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

@media (max-width: 900px) {
    .contact {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.contact-info ul {
    list-style: none;
    margin-top: 32px;
}

.contact-info li {
    font-family: var(--mono);
    font-size: 0.9rem;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

    .contact-info li span:first-child {
        color: var(--muted);
        letter-spacing: 0.08em;
    }

form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

label {
    font-family: var(--mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
    margin-bottom: 6px;
    display: block;
}

input, select, textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: #fff;
    font-family: var(--sans);
    font-size: 0.95rem;
    color: var(--ink);
    transition: border-color 0.2s, box-shadow 0.2s;
}

    input:focus, select:focus, textarea:focus {
        outline: none;
        border-color: var(--brass);
        box-shadow: 0 0 0 3px rgba(200,155,60,0.15);
    }

textarea {
    resize: vertical;
    min-height: 110px;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

@media (max-width: 560px) {
    .field-row {
        grid-template-columns: 1fr;
    }
}

/* ===== Buttons ===== */
.btn {
    font-family: var(--mono);
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 14px 28px;
    border-radius: 2px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s var(--ease-out-expo);
    border: 1px solid var(--ink);
    cursor: pointer;
}

.btn-primary {
    background: var(--ink);
    color: var(--paper);
}

    .btn-primary:hover {
        background: var(--brass);
        border-color: var(--brass);
        color: var(--ink);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px -8px rgba(200,155,60,0.5);
    }

.btn-ghost {
    background: transparent;
    color: var(--ink);
}

    .btn-ghost:hover {
        border-color: var(--brass);
        color: var(--brass);
        transform: translateY(-2px);
    }

/* ===== Footer ===== */
footer {
    background: var(--ink);
    color: #a39d8f;
    padding: 50px 0 30px;
    font-family: var(--mono);
    font-size: 0.82rem;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

    .footer-grid .logo {
        color: #fff;
    }

        .footer-grid .logo .ring {
            border-color: #fff;
        }

footer nav ul {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

footer nav a {
    font-size: 0.8rem;
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #a39d8f;
    transition: color 0.2s;
}

    footer nav a:hover {
        color: var(--brass);
        border-bottom: none;
    }

footer .copyright {
    color: #4a4641;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid #242428;
    text-align: center;
    font-size: 0.74rem;
    letter-spacing: 0.08em;
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
