/* ══════════════════════════════════════════════════════════
   JRQ Flowers — Home Template Styles v2
   Namespace: jrqh- (JRQ Home) — Cero conflictos con Akola
   ══════════════════════════════════════════════════════════ */

/* ── VARIABLES (prefijadas) ── */
:root {
    --jrqh-gold: #D4AF37;
    --jrqh-gold-light: #D4BB6E;
    --jrqh-gold-pale: #E8D9A0;
    --jrqh-gold-dark: #9A8235;
    --jrqh-gold-glow: rgba(212,175,55,0.12);
    --jrqh-black: #080808;
    --jrqh-black-2: #0E0E0E;
    --jrqh-black-3: #141414;
    --jrqh-black-4: #1A1A1A;
    --jrqh-border: #1F1F1F;
    --jrqh-white: #F2EFE8;
    --jrqh-gray: #777;
    --jrqh-gray-l: #999;
    --jrqh-serif: 'Cormorant Garamond', serif;
    --jrqh-sans: 'Outfit', sans-serif;
}

/* ── WRAPPER ── */
.jrqh-wrapper {
    background: var(--jrqh-black);
    color: var(--jrqh-white);
    font-family: var(--jrqh-sans);
    overflow-x: hidden;
}

/* ══════ REVEAL ANIMATION ══════ */
.jrqh-reveal {
    opacity: 0; transform: translateY(24px);
    transition: all 0.65s ease;
}
.jrqh-reveal.jrqh-vis { opacity: 1; transform: translateY(0); }
.jrqh-d1 { transition-delay: .08s; }
.jrqh-d2 { transition-delay: .16s; }
.jrqh-d3 { transition-delay: .24s; }
.jrqh-d4 { transition-delay: .32s; }

/* ══════ SECTION UTILS ══════ */
.jrqh-tag {
    display: inline-flex; align-items: center; gap: 0.7rem;
    font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--jrqh-gold); font-weight: 500; margin-bottom: 1rem;
}
.jrqh-tag::before { content: ''; width: 24px; height: 1px; background: var(--jrqh-gold); }

h2.jrqh-title {
    font-family: var(--jrqh-serif);
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    font-weight: 400; line-height: 1.18;
    color: var(--jrqh-white);
}
h2.jrqh-title em { font-style: italic; color: var(--jrqh-gold); }

/* ══════ BUTTONS ══════ */
.jrqh-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.65rem 1.6rem; border-radius: 50px;
    font-family: var(--jrqh-sans); font-size: 0.7rem; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    text-decoration: none; cursor: pointer; border: none;
    transition: all 0.3s ease;
}
.jrqh-btn-gold { background: var(--jrqh-gold); color: var(--jrqh-black); }
.jrqh-btn-gold:hover { background: var(--jrqh-gold-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(212,175,55,0.2); }
.jrqh-btn-gold svg { width: 12px; height: 12px; transition: transform 0.3s; }
.jrqh-btn-gold:hover svg { transform: translateX(2px); }
.jrqh-btn-outline {
    background: transparent; color: var(--jrqh-gold-light);
    border: 1px solid rgba(212,175,55,0.25);
}
.jrqh-btn-outline:hover { border-color: var(--jrqh-gold); background: rgba(212,175,55,0.06); }

/* ══════════════════════════
   SLIDER (50vh)
   ══════════════════════════ */
.jrqh-slider {
    position: relative; width: 100%;
    height: 50vh; min-height: 350px;
    overflow: hidden;
}
.jrqh-sl {
    position: absolute; inset: 0;
    opacity: 0; visibility: hidden;
    transition: opacity 1.4s cubic-bezier(0.4,0,0.2,1), visibility 1.4s;
}
.jrqh-sl.jrqh-active { opacity: 1; visibility: visible; z-index: 2; }

.jrqh-sl-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transform: scale(1.12);
    transition: transform 10s cubic-bezier(0.22,1,0.36,1);
    will-change: transform;
}
.jrqh-sl.jrqh-active .jrqh-sl-bg { transform: scale(1); }

.jrqh-sl-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(8,8,8,0.85) 0%, rgba(8,8,8,0.45) 50%, rgba(8,8,8,0.25) 100%);
}
.jrqh-sl-vignette {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(8,8,8,0.5) 100%);
}

.jrqh-sl-frame { position: absolute; z-index: 3; pointer-events: none; }
.jrqh-sl-frame-tl { top: 2rem; left: 2.5rem; width: 50px; height: 50px; border-top: 1px solid rgba(212,175,55,0.2); border-left: 1px solid rgba(212,175,55,0.2); }
.jrqh-sl-frame-br { bottom: 2rem; right: 2.5rem; width: 50px; height: 50px; border-bottom: 1px solid rgba(212,175,55,0.2); border-right: 1px solid rgba(212,175,55,0.2); }

.jrqh-sl-inner {
    position: relative; z-index: 4;
    height: 100%; max-width: 1100px; margin: 0 auto;
    padding: 0 3rem;
    display: flex; flex-direction: column;
    justify-content: center;
}

.jrqh-sl-sub {
    font-family: var(--jrqh-sans);
    font-size: 0.6rem; font-weight: 400;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--jrqh-gold-light);
    margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.8rem;
    opacity: 0; transform: translateY(12px);
    transition: all 0.6s 0.3s ease;
}
.jrqh-sl-sub::before { content: ''; width: 28px; height: 1px; background: var(--jrqh-gold); }
.jrqh-sl.jrqh-active .jrqh-sl-sub { opacity: 1; transform: translateY(0); }

.jrqh-sl-title {
    font-family: var(--jrqh-serif);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 300; line-height: 1.1;
    color: var(--jrqh-white); margin-bottom: 1rem;
    max-width: 600px;
    opacity: 0; transform: translateY(25px);
    transition: all 0.8s 0.45s ease;
}
.jrqh-sl-title em { font-style: italic; color: var(--jrqh-gold); font-weight: 400; }
.jrqh-sl.jrqh-active .jrqh-sl-title { opacity: 1; transform: translateY(0); }

.jrqh-sl-desc {
    font-size: 0.82rem; color: var(--jrqh-gray-l);
    line-height: 1.75; font-weight: 300;
    max-width: 420px; margin-bottom: 1.5rem;
    opacity: 0; transform: translateY(18px);
    transition: all 0.7s 0.6s ease;
}
.jrqh-sl.jrqh-active .jrqh-sl-desc { opacity: 1; transform: translateY(0); }

.jrqh-sl-btns {
    display: flex; gap: 0.8rem;
    opacity: 0; transform: translateY(14px);
    transition: all 0.7s 0.75s ease;
}
.jrqh-sl.jrqh-active .jrqh-sl-btns { opacity: 1; transform: translateY(0); }

/* Slider Controls */
.jrqh-sl-controls {
    position: absolute; bottom: 1.5rem; left: 3rem; z-index: 10;
    display: flex; align-items: center; gap: 1.2rem;
}
.jrqh-sl-arrows { display: flex; gap: 0.3rem; }
.jrqh-sl-arr {
    width: 38px; height: 38px; border-radius: 50%;
    border: 1px solid rgba(212,175,55,0.2);
    background: rgba(8,8,8,0.3); backdrop-filter: blur(8px);
    color: var(--jrqh-gold-light); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
}
.jrqh-sl-arr:hover { background: var(--jrqh-gold); color: var(--jrqh-black); border-color: var(--jrqh-gold); }
.jrqh-sl-arr svg { width: 14px; height: 14px; }

.jrqh-sl-pips { display: flex; gap: 5px; align-items: center; }
.jrqh-sl-pip {
    width: 20px; height: 2px; border-radius: 1px;
    background: rgba(212,175,55,0.15); cursor: pointer;
    position: relative; overflow: hidden; transition: width 0.4s;
}
.jrqh-sl-pip.jrqh-pip-on { width: 44px; background: rgba(212,175,55,0.2); }
.jrqh-sl-pip-bar {
    position: absolute; left: 0; top: 0;
    height: 100%; width: 0; background: var(--jrqh-gold);
    border-radius: 1px;
}
.jrqh-sl-counter { font-family: var(--jrqh-serif); font-size: 0.8rem; color: var(--jrqh-gray); }
.jrqh-sl-counter b { color: var(--jrqh-gold); font-size: 1.05rem; }

.jrqh-sl-gold-line {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--jrqh-gold), transparent);
    opacity: 0.25; z-index: 5;
}

/* ══════════════════════════
   MARQUEE
   ══════════════════════════ */
.jrqh-marquee { background: var(--jrqh-gold); padding: 0.55rem 0; overflow: hidden; }
.jrqh-marquee-track { display: flex; animation: jrqhMarquee 20s linear infinite; width: max-content; }
.jrqh-marquee-track span {
    font-family: var(--jrqh-serif); font-size: 0.72rem; font-weight: 500;
    color: var(--jrqh-black); padding: 0 1.4rem;
    letter-spacing: 0.18em; text-transform: uppercase; white-space: nowrap;
}
.jrqh-marquee-track span::after { content: '✦'; margin-left: 1.4rem; opacity: 0.3; font-size: 0.55rem; vertical-align: middle; }
@keyframes jrqhMarquee { to { transform: translateX(-50%); } }

/* ══════════════════════════
   ABOUT
   ══════════════════════════ */
.jrqh-about { padding: 5rem 2.5rem; max-width: 1100px; margin: 0 auto; }
.jrqh-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.jrqh-about-text p { font-size: 0.84rem; color: var(--jrqh-gray); line-height: 1.8; font-weight: 300; margin-bottom: 0.7rem; }
.jrqh-about-stats {
    display: flex; gap: 2.2rem; margin-top: 2rem; padding-top: 1.8rem;
    border-top: 1px solid var(--jrqh-border);
}
.jrqh-stat h3 { font-family: var(--jrqh-serif); font-size: 2rem; font-weight: 600; color: var(--jrqh-gold); line-height: 1; }
.jrqh-stat p { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--jrqh-gray); margin-top: 0.25rem; }
.jrqh-about-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.jrqh-img-tall { grid-row: span 2; border-radius: 60px 60px 12px 12px; overflow: hidden; height: 320px; border: 1px solid rgba(212,175,55,0.06); }
.jrqh-img-short { border-radius: 12px; overflow: hidden; height: 153px; border: 1px solid rgba(212,175,55,0.05); }
.jrqh-about-imgs img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.jrqh-img-tall:hover img,
.jrqh-img-short:hover img { transform: scale(1.04); }

/* ══════════════════════════
   PRODUCTS
   ══════════════════════════ */
.jrqh-products {
    padding: 4rem 2.5rem 5rem;
    background: var(--jrqh-black-2); border-top: 1px solid var(--jrqh-border);
}
.jrqh-products-inner { max-width: 1100px; margin: 0 auto; }
.jrqh-products-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; }
.jrqh-products-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
    transition: opacity 0.3s;
}
.jrqh-products-grid.jrqh-loading { opacity: 0.35; pointer-events: none; }

.jrqh-prod-card {
    border-radius: 12px; overflow: hidden;
    background: var(--jrqh-black-3); border: 1px solid rgba(212,175,55,0.04);
    transition: all 0.3s; cursor: pointer;
    text-decoration: none; color: inherit; display: block;
}
.jrqh-prod-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); border-color: rgba(212,175,55,0.1); }
.jrqh-prod-card .jrqh-prod-img { aspect-ratio: 4/5; overflow: hidden; position: relative; }
.jrqh-prod-card .jrqh-prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.jrqh-prod-card:hover .jrqh-prod-img img { transform: scale(1.05); }
.jrqh-prod-info { padding: 0.8rem 0.9rem; }
.jrqh-prod-info h3 { font-family: var(--jrqh-serif); font-size: 0.9rem; font-weight: 500; margin-bottom: 0.1rem; color: var(--jrqh-white); }
.jrqh-prod-info span { font-size: 0.63rem; color: var(--jrqh-gray); letter-spacing: 0.04em; }
.jrqh-prod-price { font-size: 0.78rem; color: var(--jrqh-gold); margin-top: 0.3rem; font-weight: 500; display: block; }
.jrqh-no-products { grid-column: 1/-1; text-align: center; color: var(--jrqh-gray); padding: 2rem; }

/* Filters */
.jrqh-filters { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.jrqh-filters button {
    padding: 0.4rem 1rem; border-radius: 50px;
    font-family: var(--jrqh-sans); font-size: 0.65rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    border: 1px solid var(--jrqh-border); background: transparent;
    color: var(--jrqh-gray-l); cursor: pointer; transition: all 0.3s;
}
.jrqh-filters button:hover,
.jrqh-filters button.jrqh-filter-active {
    border-color: var(--jrqh-gold); color: var(--jrqh-gold);
    background: var(--jrqh-gold-glow);
}

/* Pagination */
.jrqh-pagination {
    display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem;
}
.jrqh-pagination button {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid var(--jrqh-border); background: transparent;
    color: var(--jrqh-gray-l); cursor: pointer; font-family: var(--jrqh-sans);
    font-size: 0.75rem; transition: all 0.3s;
    display: flex; align-items: center; justify-content: center;
}
.jrqh-pagination button:hover,
.jrqh-pagination button.jrqh-page-active {
    border-color: var(--jrqh-gold); color: var(--jrqh-gold);
    background: var(--jrqh-gold-glow);
}
.jrqh-pagination button:disabled { opacity: 0.3; cursor: not-allowed; }

/* ══════════════════════════
   FEATURES
   ══════════════════════════ */
.jrqh-features { padding: 5rem 2.5rem; max-width: 1100px; margin: 0 auto; }
.jrqh-feat-header { text-align: center; max-width: 460px; margin: 0 auto 3rem; }
.jrqh-feat-header p { font-size: 0.84rem; color: var(--jrqh-gray); font-weight: 300; line-height: 1.7; margin-top: 0.6rem; }
.jrqh-feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.jrqh-feat-card {
    padding: 1.8rem; border-radius: 16px;
    background: var(--jrqh-black-3); border: 1px solid var(--jrqh-border);
    transition: all 0.3s; position: relative; overflow: hidden;
}
.jrqh-feat-card::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--jrqh-gold), transparent);
    opacity: 0; transition: opacity 0.3s;
}
.jrqh-feat-card:hover::after { opacity: 1; }
.jrqh-feat-card:hover { transform: translateY(-2px); border-color: rgba(212,175,55,0.08); }
.jrqh-feat-ico {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--jrqh-gold-glow);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; margin-bottom: 1rem;
}
.jrqh-feat-card h3 { font-family: var(--jrqh-serif); font-size: 1.1rem; font-weight: 500; color: var(--jrqh-gold-light); margin-bottom: 0.5rem; }
.jrqh-feat-card p { font-size: 0.78rem; color: var(--jrqh-gray); line-height: 1.7; font-weight: 300; }

/* ══════════════════════════
   GALLERY
   ══════════════════════════ */
.jrqh-gallery {
    padding: 4rem 2.5rem 5rem;
    background: var(--jrqh-black-2); border-top: 1px solid var(--jrqh-border);
    position: relative;
}
.jrqh-gallery::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 40% 40%, rgba(212,175,55,0.02), transparent 60%);
}
.jrqh-gallery-inner { max-width: 1100px; margin: 0 auto; position: relative; }
.jrqh-gallery-header { text-align: center; margin-bottom: 2.5rem; }
.jrqh-gal-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 180px 180px; gap: 0.7rem;
}
.jrqh-gal-item {
    border-radius: 10px; overflow: hidden; position: relative;
    cursor: pointer; border: 1px solid rgba(212,175,55,0.04);
}
.jrqh-gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.jrqh-gal-item:hover img { transform: scale(1.07); }
.jrqh-gal-item:nth-child(1) { grid-column: span 2; }
.jrqh-gal-item:nth-child(4) { grid-row: span 2; }
.jrqh-gal-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(8,8,8,0.6), transparent 50%);
    opacity: 0; transition: opacity 0.3s;
    display: flex; align-items: flex-end; padding: 0.8rem;
}
.jrqh-gal-item:hover .jrqh-gal-overlay { opacity: 1; }
.jrqh-gal-overlay span { font-family: var(--jrqh-serif); color: var(--jrqh-gold-light); font-size: 0.85rem; font-style: italic; }

/* ══════════════════════════
   CTA
   ══════════════════════════ */
.jrqh-cta { padding: 5rem 2.5rem; }
.jrqh-cta-box {
    max-width: 620px; margin: 0 auto; padding: 2.8rem;
    text-align: center; border: 1px solid rgba(212,175,55,0.1);
    border-radius: 20px; background: var(--jrqh-black-3);
    position: relative;
}
.jrqh-cta-box::before {
    content: ''; position: absolute; top: -1px; left: 20%; right: 20%;
    height: 1px; background: linear-gradient(90deg, transparent, var(--jrqh-gold), transparent);
}
.jrqh-cta-box p { font-size: 0.85rem; color: var(--jrqh-gray); font-weight: 300; line-height: 1.7; margin: 0.8rem 0 1.8rem; }
.jrqh-cta-btns { display: flex; gap: 0.7rem; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════
   CONTACT — Centrado
   ══════════════════════════ */
.jrqh-contact { padding: 4rem 2.5rem; }
.jrqh-contact-wrapper { max-width: 1100px; margin: 0 auto; }
.jrqh-contact-grid {
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: 3rem; align-items: start;
}
.jrqh-contact-info > p { font-size: 0.84rem; color: var(--jrqh-gray); font-weight: 300; line-height: 1.7; margin-bottom: 1.8rem; }
.jrqh-contact-items { display: flex; flex-direction: column; gap: 1rem; }
.jrqh-contact-item { display: flex; gap: 0.7rem; align-items: flex-start; }
.jrqh-contact-ico {
    width: 36px; height: 36px; min-width: 36px;
    background: var(--jrqh-gold-glow); border-radius: 9px;
    display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
}
.jrqh-label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--jrqh-gray); }
.jrqh-value { font-size: 0.84rem; color: var(--jrqh-white); }
.jrqh-contact-item a { color: var(--jrqh-gold-light); text-decoration: none; transition: color 0.3s; }
.jrqh-contact-item a:hover { color: var(--jrqh-gold); }

.jrqh-form {
    background: var(--jrqh-black-3); padding: 2rem;
    border-radius: 16px; border: 1px solid var(--jrqh-border);
}
.jrqh-field { margin-bottom: 1rem; }
.jrqh-field label { display: block; font-size: 0.63rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--jrqh-gray); margin-bottom: 0.35rem; }
.jrqh-field input,
.jrqh-field textarea {
    width: 100%; padding: 0.65rem 0.9rem;
    border: 1px solid var(--jrqh-border); border-radius: 8px;
    font-family: var(--jrqh-sans); font-size: 0.8rem;
    color: var(--jrqh-white); background: var(--jrqh-black-4);
    outline: none; transition: border-color 0.3s;
}
.jrqh-field input::placeholder,
.jrqh-field textarea::placeholder { color: #3a3a3a; }
.jrqh-field input:focus,
.jrqh-field textarea:focus { border-color: var(--jrqh-gold); }
.jrqh-field textarea { resize: vertical; min-height: 80px; }
.jrqh-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.jrqh-submit-btn {
    width: 100%; padding: 0.7rem;
    background: var(--jrqh-gold); color: var(--jrqh-black); border: none;
    border-radius: 8px; font-family: var(--jrqh-sans); font-size: 0.7rem;
    font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    cursor: pointer; transition: all 0.3s;
}
.jrqh-submit-btn:hover { background: var(--jrqh-gold-light); transform: translateY(-1px); }

/* ══════════════════════════
   FOOTER PERSONALIZADO
   ══════════════════════════ */
.jrqh-footer {
    background: var(--jrqh-black-2);
    border-top: 1px solid var(--jrqh-border);
    position: relative;
}
.jrqh-footer::before {
    content: ''; position: absolute; top: 0; left: 10%; right: 10%;
    height: 1px; background: linear-gradient(90deg, transparent, var(--jrqh-gold), transparent);
    opacity: 0.3;
}
.jrqh-footer-inner { max-width: 1100px; margin: 0 auto; padding: 3rem 2.5rem 0; }
.jrqh-footer-top {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem; padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--jrqh-border);
}
.jrqh-footer-logo {
    font-family: var(--jrqh-serif);
    font-size: 1.4rem; font-weight: 400;
    color: var(--jrqh-white);
    margin-bottom: 0.6rem;
}
.jrqh-footer-logo i { font-style: italic; color: var(--jrqh-gold); }
.jrqh-footer-brand p {
    font-size: 0.78rem; color: var(--jrqh-gray);
    line-height: 1.7; font-weight: 300; max-width: 260px;
}
.jrqh-footer-col h4 {
    font-family: var(--jrqh-serif);
    font-size: 0.85rem; font-weight: 500;
    color: var(--jrqh-gold-light);
    margin-bottom: 0.8rem;
    letter-spacing: 0.04em;
}
.jrqh-footer-col ul { list-style: none; margin: 0; padding: 0; }
.jrqh-footer-col ul li { margin-bottom: 0.4rem; }
.jrqh-footer-col ul li a {
    font-size: 0.75rem; color: var(--jrqh-gray);
    text-decoration: none; transition: color 0.3s;
    font-weight: 300;
}
.jrqh-footer-col ul li a:hover { color: var(--jrqh-gold); }

.jrqh-footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.2rem 0; flex-wrap: wrap; gap: 1rem;
}
.jrqh-footer-bottom p {
    font-size: 0.68rem; color: var(--jrqh-gray);
    letter-spacing: 0.06em; font-weight: 300;
}
.jrqh-footer-social { display: flex; gap: 0.6rem; }
.jrqh-footer-social a {
    display: flex; align-items: center; justify-content: center;
    width: 30px; height: 30px; border-radius: 50%;
    border: 1px solid var(--jrqh-border);
    color: var(--jrqh-gray); transition: all 0.3s;
    text-decoration: none;
}
.jrqh-footer-social a:hover {
    border-color: var(--jrqh-gold); color: var(--jrqh-gold);
    background: var(--jrqh-gold-glow);
}

/* ══════════════════════════
   RESPONSIVE
   ══════════════════════════ */
@media (max-width: 1024px) {
    .jrqh-about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .jrqh-products-grid { grid-template-columns: repeat(3, 1fr); }
    .jrqh-contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .jrqh-gal-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .jrqh-gal-item:nth-child(4) { grid-row: span 1; }
    .jrqh-feat-grid { grid-template-columns: 1fr; gap: 0.8rem; }
    .jrqh-footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
    .jrqh-slider { height: 50vh; min-height: 280px; }
    .jrqh-sl-inner { padding: 0 1.5rem; }
    .jrqh-sl-controls { left: 1.5rem; bottom: 1rem; }
    .jrqh-sl-frame-tl { top: 1.2rem; left: 1.2rem; width: 35px; height: 35px; }
    .jrqh-sl-frame-br { bottom: 1.2rem; right: 1.2rem; width: 35px; height: 35px; }
    .jrqh-products-grid { grid-template-columns: repeat(2, 1fr); }
    .jrqh-about-stats { gap: 1.2rem; }
    .jrqh-gal-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .jrqh-gal-item:nth-child(1) { grid-column: span 1; }
    .jrqh-cta-box { padding: 1.8rem; }
    .jrqh-field-row { grid-template-columns: 1fr; }
    .jrqh-footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
    .jrqh-footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
    .jrqh-sl-title { font-size: clamp(1.4rem, 6vw, 2rem); }
    .jrqh-sl-desc { font-size: 0.75rem; }
    .jrqh-prod-info { padding: 0.6rem 0.7rem; }
    .jrqh-prod-info h3 { font-size: 0.82rem; }
    .jrqh-stat h3 { font-size: 1.6rem; }
    .jrqh-about-imgs { grid-template-columns: 1fr; }
    .jrqh-img-tall { grid-row: span 1; height: 180px; border-radius: 12px; }
    .jrqh-img-short { height: 130px; }
    .jrqh-form { padding: 1.3rem; }
    .jrqh-sl-counter { display: none; }
}
