/* ============================================================
   HORNO ARTESANO DE LUISA — styles.css
   Paleta extraída del logotipo: fondo carbón oscuro,
   sepia dorado, óxido rojizo, crema tostada.
   ============================================================ */

/* ── Google Fonts importadas en HTML ── */

/* ── Variables ─────────────────────────────────────────────── */
:root {
    /* Fondos */
    --bg-primary:    #2a2827;   /* carbón oscuro del logo */
    --bg-secondary:  #1e1c1a;   /* más oscuro — tarjetas, footer */
    --bg-light:      #332f2a;   /* secciones alternas */
    --bg-card:       #221f1d;

    /* Acentos dorados y óxido */
    --gold:          #d4ac7d;   /* dorado pálido — títulos, menú */
    --gold-bright:   #e8c896;   /* dorado brillante — hover */
    --rust:          #8e5b3e;   /* óxido del texto del logo */
    --rust-deep:     #6b4230;
    --brown:         #a67c52;   /* marrón cálido medio */

    /* Textos */
    --text-primary:  #f5e6d3;   /* crema suave — lectura sobre oscuro */
    --text-secondary:#c9a87c;   /* tostado cálido */
    --text-muted:    #8a7060;   /* gris cálido — secundario */

    /* Bordes */
    --border:        #5a4030;
    --border-light:  #3d3028;

    /* Tipografías */
    --font-serif:    'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body:     'Lato', 'Helvetica Neue', Arial, sans-serif;
    --font-fell:     'IM Fell English', Georgia, serif;

    /* UI */
    --transition:    0.3s ease;
    --radius:        3px;
    --shadow-card:   0 4px 28px rgba(0, 0, 0, 0.45);
    --shadow-hover:  0 10px 40px rgba(212, 172, 125, 0.18);
    --header-h:      90px;
}

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

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.75;
    overflow-x: hidden;
}

/* Bloquea scroll cuando el menú móvil está abierto */
body.nav-is-open {
    overflow: hidden;
}

/* ── Layout ─────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-pad {
    padding: 5.5rem 0;
}

/* ── Tipografía global ──────────────────────────────────────── */
h1, h2, h3 {
    font-family: var(--font-serif);
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 900;
    padding: 0.75rem 0;
    transition:
        background-color var(--transition),
        box-shadow var(--transition),
        padding var(--transition);
}

.site-header.scrolled {
    background-color: rgba(26, 23, 21, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
    padding: 0.4rem 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* Logo */
.logo-link { display: flex; align-items: center; }

.logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.6));
    transition: height var(--transition);
}

.site-header.scrolled .logo { height: 58px; }

/* Nav desktop */
.nav-list {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    position: relative;
    padding-bottom: 4px;
    transition: color var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background-color: var(--gold-bright);
    transition: width var(--transition);
}

.nav-link:hover            { color: var(--gold-bright); }
.nav-link:hover::after     { width: 100%; }

/* Hamburger button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1100;
}

.bar {
    display: block;
    width: 26px;
    height: 2px;
    background-color: var(--gold);
    border-radius: 1px;
    transition: transform 0.32s ease, opacity 0.32s ease;
}

.hamburger.is-active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active .bar:nth-child(2) { opacity: 0; }
.hamburger.is-active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--bg-primary);
}

/* Textura grain SVG inline */
.hero-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.68' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

/* Resplandor ambar radial en el centro */
.hero-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 65% 55% at 50% 50%,
            rgba(165, 105, 45, 0.14) 0%,
            rgba(142, 91, 62, 0.06) 50%,
            transparent 72%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: calc(var(--header-h) + 3rem) 1.5rem 7rem;
    max-width: 860px;
    margin: 0 auto;
}

.hero-eyebrow {
    font-family: var(--font-fell);
    font-size: 1rem;
    color: var(--text-secondary);
    letter-spacing: 0.22em;
    margin-bottom: 1.8rem;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.3s;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 6.5vw, 5.2rem);
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: -0.01em;
    background: linear-gradient(
        145deg,
        var(--brown)      0%,
        var(--gold)       30%,
        var(--gold-bright) 55%,
        var(--gold)       75%,
        var(--brown)      100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1.1s ease forwards 0.55s;
}

/* Separador ornamental */
.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.9s;
}

.divider-line {
    display: block;
    width: 90px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.divider-ornament {
    color: var(--gold);
    font-size: 0.85rem;
    line-height: 1;
}

.hero-subtitle {
    font-family: var(--font-fell);
    font-style: italic;
    font-size: clamp(1.1rem, 2.5vw, 1.45rem);
    color: var(--text-primary);
    margin-bottom: 2.8rem;
    opacity: 0;
    animation: fadeUp 1s ease forwards 1.1s;
}

/* ── Botón rústico (compartido) ─────────────────────────────── */
.btn-rustic {
    display: inline-block;
    padding: 0.9rem 2.4rem;
    border: 2px solid var(--rust);
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: transparent;
    cursor: pointer;
    position: relative;
    transition:
        background-color var(--transition),
        color var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

/* Borde interior decorativo tipo sello */
.btn-rustic::before {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(212, 172, 125, 0.22);
    pointer-events: none;
    transition: border-color var(--transition);
}

.btn-rustic:hover,
.btn-rustic:focus-visible {
    background-color: var(--rust);
    color: var(--gold-bright);
    border-color: var(--rust);
    box-shadow: 0 0 24px rgba(142, 91, 62, 0.45),
                inset 0 0 10px rgba(0, 0, 0, 0.2);
    outline: none;
}

.btn-rustic:hover::before { border-color: rgba(232, 200, 150, 0.3); }

/* Animación de entrada del botón hero */
.hero-btn {
    opacity: 0;
    animation: fadeUp 1s ease forwards 1.35s;
}

/* Indicador de scroll */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    animation: fadeIn 1.2s ease forwards 2s;
}

.scroll-text {
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-arrow {
    color: var(--gold);
    font-size: 1rem;
    animation: bounce 2.2s ease-in-out infinite;
}

/* ============================================================
   ABOUT / HISTORIA
   ============================================================ */
.about {
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

/* Textura grain sutil en secciones claras */
.about::after,
.contact::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.68' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.032'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.about .container,
.contact .container {
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

/* Cita decorativa */
.about-quote {
    position: relative;
    padding: 2.2rem 1.8rem 1.8rem;
    border-left: 3px solid var(--gold);
    background-color: rgba(26, 23, 21, 0.55);
}

.quote-mark {
    font-family: var(--font-serif);
    font-size: 10rem;
    color: var(--gold);
    opacity: 0.2;
    line-height: 0.75;
    position: absolute;
    top: 1.2rem;
    left: 1rem;
    pointer-events: none;
    user-select: none;
}

blockquote {
    font-family: var(--font-fell);
    font-size: clamp(1.1rem, 2vw, 1.32rem);
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.75;
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
}

figcaption {
    font-size: 0.9rem;
    color: var(--gold);
    font-style: normal;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 0.12em;
    position: relative;
    z-index: 1;
}

.section-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 3vw, 1.75rem);
    color: var(--gold);
    margin-bottom: 1.3rem;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.85;
    margin-bottom: 1rem;
}

.about-ornament {
    font-family: var(--font-fell);
    font-style: italic;
    color: var(--rust);
    font-size: 0.92rem;
    letter-spacing: 0.06em;
    margin-top: 1.5rem;
}

/* ============================================================
   SECTION HEADERS (compartidos)
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: 3.8rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.1rem;
    letter-spacing: -0.01em;
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.1rem;
    color: var(--rust);
}

.div-line {
    display: block;
    width: 70px;
    height: 1px;
    background: var(--border);
}

.div-glyph {
    font-size: 1.3rem;
    line-height: 1;
    color: var(--rust);
}

.section-intro {
    font-family: var(--font-fell);
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1.02rem;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================================
   PRODUCTOS
   ============================================================ */
.products { background-color: var(--bg-primary); }

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.product-card {
    background-color: var(--bg-secondary);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition);
}

/* Borde dorado superior */
.card-accent {
    height: 3px;
    background: linear-gradient(90deg, var(--rust), var(--gold), var(--rust));
    flex-shrink: 0;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    font-size: 2.4rem;
    padding: 1.5rem 1.5rem 0.4rem;
}

.card-body {
    padding: 0.4rem 1.5rem 1.6rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-family: var(--font-serif);
    font-size: 1.18rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
    line-height: 1.3;
}

.card-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1.3rem;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 0.9rem;
    border-top: 1px solid var(--border-light);
}

.card-price {
    font-family: var(--font-serif);
    font-size: 1.28rem;
    font-weight: 700;
    color: var(--gold);
}

.card-tag {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rust);
    background-color: rgba(142, 91, 62, 0.1);
    border: 1px solid rgba(142, 91, 62, 0.35);
    padding: 0.2rem 0.55rem;
    border-radius: 2px;
}

/* ============================================================
   CONTACTO
   ============================================================ */
.contact {
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

/* Info block */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.35rem;
    flex-shrink: 0;
    margin-top: 0.05rem;
}

.info-item strong {
    display: block;
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.35rem;
}

.info-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
}

.info-item em {
    font-style: italic;
    color: var(--text-muted);
}

.info-item a {
    color: var(--text-secondary);
    transition: color var(--transition);
}
.info-item a:hover { color: var(--gold-bright); }

.info-quote {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    background-color: rgba(26, 23, 21, 0.55);
    border-left: 3px solid var(--rust);
    padding: 1rem 1.2rem;
    margin-top: 0.2rem;
}

.info-ornament-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }

.info-quote p {
    font-family: var(--font-fell);
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.96rem;
    line-height: 1.65;
}

/* Formulario */
.contact-form-wrap {
    background-color: rgba(26, 23, 21, 0.4);
    padding: 2rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

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

.form-group label {
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}

.form-group input,
.form-group textarea {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
    border-radius: var(--radius);
    outline: none;
    transition:
        border-color var(--transition),
        box-shadow var(--transition);
    resize: vertical;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 172, 125, 0.15);
}

/* Botón de envío — hereda .btn-rustic y sobreescribe lo necesario */
.btn-form-submit {
    align-self: flex-start;
    opacity: 1;
    animation: none;
    border: 2px solid var(--rust);
    background: transparent;
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.9rem 2.4rem;
    cursor: pointer;
    position: relative;
    transition:
        background-color var(--transition),
        color var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.btn-form-submit::before {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(212, 172, 125, 0.22);
    pointer-events: none;
    transition: border-color var(--transition);
}

.btn-form-submit:hover:not(:disabled),
.btn-form-submit:focus-visible:not(:disabled) {
    background-color: var(--rust);
    color: var(--gold-bright);
    border-color: var(--rust);
    box-shadow: 0 0 24px rgba(142, 91, 62, 0.45);
    outline: none;
}

.btn-form-submit:hover::before { border-color: rgba(232, 200, 150, 0.3); }

.btn-form-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    padding: 3rem 0 1.5rem;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.55));
    margin-bottom: 0.4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-tagline {
    font-family: var(--font-fell);
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1rem;
}

.footer-nav ul {
    display: flex;
    gap: 1.8rem;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
}

/* ============================================================
   ANIMACIONES
   ============================================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(7px); }
}

/* Fade-in scroll — estado inicial */
.fade-in {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Escalonado de tarjetas de producto */
.products-grid .fade-in:nth-child(2) { transition-delay: 0.08s; }
.products-grid .fade-in:nth-child(3) { transition-delay: 0.16s; }
.products-grid .fade-in:nth-child(4) { transition-delay: 0.24s; }
.products-grid .fade-in:nth-child(5) { transition-delay: 0.32s; }
.products-grid .fade-in:nth-child(6) { transition-delay: 0.40s; }

/* ============================================================
   RESPONSIVE — TABLET 768px+
   ============================================================ */
@media (min-width: 768px) {

    .about-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        align-items: center;
    }

    .footer-brand { align-items: flex-start; }
}

/* ============================================================
   RESPONSIVE — DESKTOP 1024px+
   ============================================================ */
@media (min-width: 1024px) {

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================================
   RESPONSIVE — MÓVIL (max 767px)
   ============================================================ */
@media (max-width: 767px) {

    :root { --header-h: 72px; }

    /* Mostrar hamburger, ocultar nav normal */
    .hamburger { display: flex; }

    .main-nav {
        position: fixed;
        top: 0; right: 0; bottom: 0;
        width: min(75vw, 280px);
        background-color: var(--bg-secondary);
        border-left: 1px solid var(--border);
        padding: 5.5rem 2rem 2rem;
        transform: translateX(105%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1050;
        overflow-y: auto;
    }

    .main-nav.nav-open { transform: translateX(0); }

    .nav-list {
        flex-direction: column;
        gap: 1.8rem;
    }

    .nav-link {
        font-size: 1.05rem;
        letter-spacing: 0.1em;
    }

    .logo          { height: 64px; }
    .section-pad   { padding: 4rem 0; }

    .hero-content  { padding-top: calc(var(--header-h) + 2.5rem); }
    .hero-title    { font-size: clamp(2rem, 10vw, 2.8rem); }

    .contact-form-wrap { padding: 1.5rem; }

    .btn-form-submit { align-self: stretch; text-align: center; }
}

/* ============================================================
   ACCESIBILIDAD — Foco visible
   ============================================================ */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* Reducción de movimiento */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    .fade-in { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}
