/* ═══════════════════════════════════════════════
   Music Party Theme — main.css
   ═══════════════════════════════════════════════ */

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

:root {
    --black:        #0a0a0a;
    --deep:         #111114;
    --surface:      #17171b;
    --card:         #1e1e24;
    --border:       rgba(255,255,255,0.07);
    --muted:        rgba(245,244,240,0.45);
    --accent:       #e8c14a;
    --accent-hover: #f0d060;
    --white:        #f5f4f0;
    --marquee-bg:   #e8c14a;
    --marquee-text: #0a0a0a;
    --display: 'Bebas Neue', sans-serif;
    --body:    'Inter', sans-serif;
    --radius:  4px;
}

html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: var(--body); font-size: 16px; line-height: 1.6; overflow-x: hidden; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; }

/* ─── SKIP LINK ──────────────────────────────────── */
.skip-link { position: absolute; top: -100px; left: 1rem; background: var(--accent); color: var(--black); padding: .5rem 1rem; border-radius: var(--radius); font-weight: 600; z-index: 9999; transition: top .2s; }
.skip-link:focus { top: 1rem; }

/* ═══════════════════════════════════════════════
   NAV + SUBMENÚ (hover CSS — igual que musicparty.es)
   ═══════════════════════════════════════════════ */

.main-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center;
    padding: 0 5vw; height: 64px;
    background: rgba(10,10,10,0.93);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

/* Logo */
.nav-logo { font-family: var(--display); font-size: 1.8rem; letter-spacing: .12em; color: var(--white); text-decoration: none; flex-shrink: 0; margin-right: auto; }
.nav-logo span { color: var(--accent); }
.nav-logo .custom-logo-link { display: flex; align-items: center; }
.nav-logo img, .nav-logo-img { height: 42px; width: auto; display: block; }

/* Llista nivell 1 */
#nav-menu, .nav-links { display: flex; align-items: stretch; list-style: none; margin: 0; padding: 0; height: 100%; }
#nav-menu li, .nav-links li { list-style: none; }

/* <li> nivell 1 */
#nav-menu > li, .nav-links > li { position: relative; display: flex; align-items: center; }

/* Link nivell 1 */
#nav-menu > li > a, .nav-links > li > a {
    display: flex; align-items: center; gap: 5px;
    height: 64px; padding: 0 .9rem;
    color: var(--muted); text-decoration: none;
    font-size: .75rem; font-weight: 500; letter-spacing: .13em; text-transform: uppercase;
    white-space: nowrap; transition: color .2s;
}
#nav-menu > li > a:hover,
#nav-menu > li:hover > a,
#nav-menu > .current-menu-item > a,
#nav-menu > .current-menu-ancestor > a { color: var(--accent); }

/* Fletxa ▾ */
#nav-menu > li.menu-item-has-children > a::after {
    content: '';
    width: 6px; height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .2s; flex-shrink: 0;
}
#nav-menu > li.menu-item-has-children:hover > a::after { transform: rotate(-135deg) translateY(2px); }

/* ─── SUBMENÚ ─────────────────────────────────────────────────
   Obre per HOVER sobre el <li> pare, igual que musicparty.es.
   top:100%  →  just a sota del <li> (que té height:64px = nav)
   left:0    →  alineat amb el costat esquerre del <li> pare
   Flota per sobre el contingut — la nav NO canvia de mida.
   ─────────────────────────────────────────────────────────── */
#nav-menu > li > .sub-menu {
    /* posicionament */
    position: absolute;
    top: 100%;    /* just sota el <li> — 64px de la nav */
    left: 0;      /* alineat amb l'inici del <li> pare */

    /* mida i aspecte */
    min-width: 220px;
    margin: 0; padding: .4rem 0;
    list-style: none;
    background: #18181e;
    border: 1px solid rgba(255,255,255,.12);
    border-top: 2px solid var(--accent);
    border-radius: 0 0 6px 6px;
    box-shadow: 0 16px 40px rgba(0,0,0,.65);
    z-index: 1100;

    /* OCULT per defecte */
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity .18s ease, transform .18s ease, visibility 0s .18s;
}

/* VISIBLE en fer hover sobre el <li> pare — CSS pur, igual que el lloc actual */
#nav-menu > li:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity .18s ease, transform .18s ease, visibility 0s 0s;
}

/* Últims items: alinear a la dreta per no sortir de pantalla */
#nav-menu > li:last-of-type > .sub-menu,
#nav-menu > li:nth-last-of-type(2) > .sub-menu { left: auto; right: 0; }

/* Items del submenú */
#nav-menu .sub-menu li { position: relative; list-style: none; }
#nav-menu .sub-menu > li + li { border-top: 1px solid rgba(255,255,255,.06); }
#nav-menu .sub-menu a {
    display: block; padding: .65rem 1.3rem;
    color: rgba(245,244,240,.62); text-decoration: none;
    font-size: .73rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
    white-space: nowrap; transition: color .15s, background .15s;
}
#nav-menu .sub-menu a:hover { color: var(--accent); background: rgba(255,255,255,.04); }

/* 3r nivell cap a la dreta */
#nav-menu .sub-menu .sub-menu { top: 0; left: 100%; border-top: 2px solid var(--accent); border-radius: 0 6px 6px 6px; transform: translateX(6px); }
#nav-menu .sub-menu li:hover > .sub-menu { visibility: visible; opacity: 1; pointer-events: auto; transform: translateX(0); transition: opacity .18s ease, transform .18s ease, visibility 0s 0s; }
#nav-menu .sub-menu .menu-item-has-children > a::after { content: "›"; float: right; font-size: 1rem; margin-left: 8px; opacity: .6; }

/* CTA */
.nav-cta { background: var(--accent) !important; color: var(--black) !important; padding: .45rem 1.1rem; border-radius: var(--radius); font-size: .74rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; text-decoration: none; white-space: nowrap; margin-left: 1rem; transition: background .2s; flex-shrink: 0; }
.nav-cta:hover { background: var(--accent-hover) !important; }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: .5rem; height: 44px; width: 44px; margin-left: 1rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.main-nav.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.main-nav.menu-open .nav-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.main-nav.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.submenu-toggle { display: none; }

/* ─── BUTTONS ────────────────────────────────────── */
.btn-primary { background: var(--accent); color: var(--black); padding: .9rem 2.2rem; font-weight: 600; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; text-decoration: none; border-radius: var(--radius); border: none; cursor: pointer; font-family: var(--body); display: inline-block; transition: background .2s, transform .15s; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-ghost { border: 1px solid rgba(255,255,255,.25); color: var(--white); padding: .9rem 2.2rem; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; text-decoration: none; border-radius: var(--radius); display: inline-block; transition: border-color .2s, color .2s, transform .15s; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }

/* ─── SECTION SHARED ─────────────────────────────── */
.section-label { font-size: .68rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
.section-label::before { content: ''; display: block; width: 28px; height: 1px; background: var(--accent); }
.section-title { font-family: var(--display); font-size: clamp(2.8rem, 6vw, 5rem); line-height: .95; letter-spacing: .03em; margin-bottom: 1.5rem; }
.section-body { font-size: 1rem; color: var(--muted); max-width: 100%; line-height: 1.75; }

/* ─── HERO ───────────────────────────────────────── */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end; padding: 0 5vw 8vh; position: relative; overflow: hidden; background-size: cover; background-position: center; }
.hero-bg { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(10,10,10,1) 0%, rgba(10,10,10,.6) 50%, rgba(10,10,10,.2) 100%), linear-gradient(135deg, rgba(232,193,74,.08) 0%, transparent 60%); }
.hero-grid { position: absolute; inset: 0; z-index: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 60px 60px; }
.hero-blur-layer { position: absolute; inset: 0; z-index: 0; }
.hero-beats { position: absolute; top: 30%; left: 5vw; z-index: 2; display: flex; align-items: flex-end; gap: 4px; height: 80px; opacity: .18; }
.beat-bar { width: 5px; background: var(--accent); border-radius: 2px; animation: pulse 1.2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { transform: scaleY(.2); } 50% { transform: scaleY(1); } }
@media (prefers-reduced-motion: reduce) { .beat-bar, .vinyl { animation: none; } }
.hero-content { position: relative; z-index: 3; max-width: 860px; }
.hero-eyebrow { font-size: .7rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.2rem; display: flex; align-items: center; gap: 12px; }
.hero-eyebrow::before { content: ''; display: block; width: 36px; height: 1px; background: var(--accent); }
.hero-title { font-family: var(--display); font-size: clamp(4.5rem, 11vw, 10rem); line-height: .9; letter-spacing: .02em; margin-bottom: .5rem; }
.hero-title .line2 { color: var(--accent); }
.hero-title--image { margin-bottom: .5rem; }
.hero-title-img {
    max-width: 100%;
    max-height: 220px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: left center;
    /* Mantenir la llegibilitat sobre qualsevol fons */
    filter: drop-shadow(0 2px 16px rgba(0,0,0,.5));
}
.hero-sub { font-size: 1.05rem; color: var(--muted); font-weight: 300; max-width: 520px; line-height: 1.7; margin: 1.8rem 0 2.8rem; }
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 3rem; margin-top: 4rem; padding-top: 2.5rem; border-top: 1px solid var(--border); flex-wrap: wrap; }
.stat-num { font-family: var(--display); font-size: 2.8rem; color: var(--accent); letter-spacing: .04em; line-height: 1; }
.stat-label { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* ─── MARQUEE ────────────────────────────────────── */
.marquee-wrap { background: var(--marquee-bg); padding: 1.1rem 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; gap: 4rem; animation: marquee 22s linear infinite; }
.marquee-item { font-family: var(--display); font-size: 1.1rem; letter-spacing: .12em; color: var(--marquee-text); text-transform: uppercase; display: flex; align-items: center; gap: 1rem; }
.marquee-dot { width: 5px; height: 5px; background: currentColor; opacity: .35; border-radius: 50%; flex-shrink: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ─── ABOUT ──────────────────────────────────────── */
.about-strip { background: var(--deep); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 6rem 5vw; display: grid; grid-template-columns: 1fr 1fr; gap: 5vw; align-items: center; }
.about-visual { position: relative; aspect-ratio: 4/3; background: var(--surface); border-radius: var(--radius); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.about-visual img { width: 100%; height: 100%; object-fit: cover; }
.vinyl { width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle at 50% 50%, #1a1a1a 0 20%, #0a0a0a 20% 22%, #2a2a2a 22% 38%, #111 38% 40%, #252525 40% 56%, #0d0d0d 56% 58%, #1e1e1e 58% 100%); box-shadow: 0 0 60px rgba(232,193,74,.12); animation: spin 8s linear infinite; position: relative; }
.vinyl::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 40px; height: 40px; border-radius: 50%; background: var(--accent); }
@keyframes spin { to { transform: rotate(360deg); } }
.about-glow { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(232,193,74,.06) 0%, transparent 70%); }

/* ─── SERVICES ───────────────────────────────────── */
.services-section { padding: 7rem 5vw; background: var(--black); background-size: cover; background-position: center; position: relative; }
.services-section::before { content: ''; position: absolute; inset: 0; background: rgba(10,10,10,.85); pointer-events: none; }
.services-section > * { position: relative; z-index: 1; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-top: 3.5rem; }
.service-card { background: var(--deep); transition: background .2s; }
.service-card:hover { background: var(--surface); }
.service-card--photo { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.service-card-thumb { display: block; position: relative; overflow: hidden; aspect-ratio: 16/9; flex-shrink: 0; }
.service-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.service-card--photo:hover .service-card-thumb img { transform: scale(1.04); }
.service-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,.6) 0%, transparent 60%); }
.service-card-body { padding: 1.6rem 2rem 2rem; flex: 1; display: flex; flex-direction: column; }
.service-card:not(.service-card--photo) .service-card-body { padding: 0; }
.service-card:not(.service-card--photo) { padding: 2.5rem 2rem; }
.service-icon { width: 44px; height: 44px; background: rgba(232,193,74,.1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; font-size: 1.4rem; }
.service-title { font-family: var(--display); font-size: 1.55rem; letter-spacing: .05em; margin-bottom: .7rem; }
.service-desc { font-size: .88rem; color: var(--muted); line-height: 1.65; }
.service-link { display: inline-flex; align-items: center; gap: 6px; color: var(--accent); font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; margin-top: 1.2rem; transition: gap .2s; }
.service-link:hover { gap: 10px; }

/* ─── DJS ────────────────────────────────────────── */
.djs-section { background: var(--deep); padding: 7rem 5vw; background-size: cover; background-position: center; position: relative; }
.djs-section::before { content: ''; position: absolute; inset: 0; background: rgba(10,10,10,.8); pointer-events: none; }
.djs-section > * { position: relative; z-index: 1; }
.djs-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1.5rem; }
.djs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.dj-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.8rem 1.6rem; position: relative; overflow: hidden; transition: border-color .25s, transform .2s; }
.dj-card:hover { border-color: rgba(232,193,74,.35); transform: translateY(-3px); }
.dj-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.dj-card:hover::before { transform: scaleX(1); }
.dj-card--photo { padding: 0; overflow: hidden; }
.dj-photo-wrap { display: block; position: relative; overflow: hidden; aspect-ratio: 3/4; }
.dj-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform .4s ease; }
.dj-card--photo:hover .dj-photo-wrap img { transform: scale(1.04); }
.dj-card--photo .dj-name, .dj-card--photo .dj-style, .dj-card--photo .dj-bio, .dj-card--photo .service-link { padding: 0 1.6rem; }
.dj-card--photo .dj-name { padding-top: 1.4rem; }
.dj-card--photo .service-link { padding-bottom: 1.6rem; display: inline-flex; }
.dj-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--surface); border: 1.5px solid rgba(232,193,74,.3); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 1.3rem; color: var(--accent); letter-spacing: .05em; margin-bottom: 1.2rem; overflow: hidden; }
.dj-avatar--photo img { width: 100%; height: 100%; object-fit: cover; }
.dj-name { font-family: var(--display); font-size: 1.5rem; letter-spacing: .05em; margin-bottom: .3rem; }
.dj-name a { color: inherit; text-decoration: none; transition: color .2s; }
.dj-name a:hover { color: var(--accent); }
.dj-style { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--accent); margin-bottom: .8rem; }
.dj-bio { font-size: .85rem; color: var(--muted); line-height: 1.6; }
.dj-years { position: absolute; top: 1.5rem; right: 1.5rem; font-family: var(--display); font-size: 2.2rem; color: rgba(232,193,74,.1); letter-spacing: .05em; line-height: 1; }

/* ─── CONTACT ────────────────────────────────────── */
.contact-section { background: var(--black); padding: 7rem 5vw; display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; align-items: center; background-size: cover; background-position: center; position: relative; }
.contact-section::before { content: ''; position: absolute; inset: 0; background: rgba(10,10,10,.88); pointer-events: none; }
.contact-section > * { position: relative; z-index: 1; }
.contact-items { display: flex; flex-direction: column; gap: 2rem; margin-bottom: 2.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { width: 40px; height: 40px; flex-shrink: 0; background: rgba(232,193,74,.08); border: 1px solid rgba(232,193,74,.15); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.contact-item-label { font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.contact-item-val { font-size: 1rem; font-weight: 500; }
.contact-item-val a { text-decoration: none; transition: color .2s; }
.contact-item-val a:hover { color: var(--accent); }
.contact-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.contact-map-col { height: 100%; min-height: 400px; }
.contact-map-col iframe { width: 100%; height: 100%; min-height: 420px; border: 0; border-radius: var(--radius); display: block; }
.contact-map-placeholder { background: var(--surface); border-radius: var(--radius); height: 420px; display: flex; align-items: center; justify-content: center; }

/* ─── FOOTER ─────────────────────────────────────── */
.site-footer { background: var(--deep); border-top: 1px solid var(--border); padding: 3rem 5vw; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.footer-logo { font-family: var(--display); font-size: 1.6rem; letter-spacing: .1em; text-decoration: none; color: var(--white); }
.footer-logo span { color: var(--accent); }
.footer-links, nav .footer-links { display: flex; gap: 1.8rem; list-style: none; flex-wrap: wrap; padding: 0; margin: 0; }
.footer-links li { list-style: none; }
.footer-links a { font-size: .78rem; color: var(--muted); text-decoration: none; letter-spacing: .08em; text-transform: uppercase; transition: color .2s; }
.footer-links a:hover { color: var(--accent); }
.footer-copy { font-size: .78rem; color: rgba(245,244,240,.3); }

/* ─── WHATSAPP FAB ───────────────────────────────── */
.whatsapp-fab { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 200; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: transform .2s; text-decoration: none; }
.whatsapp-fab:hover { transform: scale(1.08); }

/* ─── SINGLE ─────────────────────────────────────── */
.single-content { max-width: 800px; margin: 120px auto 6rem; padding: 0 5vw; }
.single-content h1 { font-family: var(--display); font-size: clamp(2.5rem,6vw,4.5rem); letter-spacing: .04em; margin-bottom: 1.5rem; }
.single-content .entry-content { color: var(--muted); line-height: 1.8; }
.single-content .entry-content p { margin-bottom: 1rem; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

@media (max-width: 900px) {
    .about-strip, .contact-section { grid-template-columns: 1fr; }
    .about-visual { aspect-ratio: 16/9; }
    .contact-map-col { min-height: 300px; }
}

@media (max-width: 768px) {
    /* Menú mòbil: llista vertical */
    #nav-menu, .nav-links {
        display: none; flex-direction: column; align-items: stretch;
        position: absolute; top: 64px; left: 0; right: 0;
        background: rgba(10,10,10,.98); border-bottom: 1px solid var(--border);
        max-height: calc(100vh - 64px); overflow-y: auto; height: auto; margin: 0;
    }
    #nav-menu.open, .nav-links.open { display: flex; }
    #nav-menu > li, .nav-links > li { flex-direction: column; align-items: stretch; border-bottom: 1px solid var(--border); }
    #nav-menu > li > a, .nav-links > li > a { height: auto; padding: .85rem 5vw; font-size: .85rem; justify-content: space-between; }
    #nav-menu > li.menu-item-has-children > a::after { margin-left: auto; }
    #nav-menu > li.open > a::after { transform: rotate(-135deg) translateY(2px); }

    /* Submenú mòbil: acordió controlat per JS (.open) */
    #nav-menu > li > .sub-menu {
        position: static; visibility: visible; opacity: 1; pointer-events: auto;
        transform: none; transition: none; box-shadow: none;
        border: none; border-top: 1px solid var(--border); border-radius: 0;
        background: rgba(255,255,255,.03); min-width: 0; width: 100%;
        display: none; padding: 0;
    }
    /* En mòbil: hover NO funciona, s'obre via .open del JS */
    #nav-menu > li:hover > .sub-menu { visibility: visible; opacity: 1; pointer-events: auto; transform: none; display: none; }
    #nav-menu > li.open > .sub-menu { display: block !important; }
    #nav-menu .sub-menu a { padding: .75rem 5vw .75rem 9vw; font-size: .8rem; }
    #nav-menu .sub-menu > li + li { border-top: 1px solid rgba(255,255,255,.06); }
    #nav-menu .sub-menu .menu-item-has-children > a::after { display: none; }

    .nav-toggle { display: flex; }
    .nav-cta { display: none; }
    .hero-stats { gap: 1.5rem; }
    .footer-inner { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }
    .djs-header { flex-direction: column; align-items: flex-start; }
    .hero { padding-bottom: 12vh; }
    .contact-ctas { flex-direction: column; }
}

@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
    .djs-grid { grid-template-columns: 1fr; }
    .stat-num { font-size: 2rem; }
}

/* ─── ABOUT: imatge expandible + galeria ──────────── */
.about-visual { cursor: default; }
.about-img-link {
    display: block; width: 100%; height: 100%;
    position: relative; overflow: hidden;
}
.about-img-link img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.about-img-link:hover img { transform: scale(1.03); }
.about-img-expand {
    position: absolute; bottom: 10px; right: 10px;
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(10,10,10,.7); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity .2s;
}
.about-img-link:hover .about-img-expand { opacity: 1; }

.about-gallery { width: 100%; height: 100%; display: flex; flex-direction: column; gap: 8px; }
.about-gallery-main { display: block; position: relative; overflow: hidden; flex: 1; min-height: 0; }
.about-gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.about-gallery-main:hover img { transform: scale(1.03); }
.about-gallery-thumbs { display: flex; gap: 6px; flex-shrink: 0; }
.about-thumb {
    width: 60px; height: 60px; flex-shrink: 0;
    border: 2px solid transparent; border-radius: var(--radius);
    overflow: hidden; cursor: pointer; background: none; padding: 0;
    transition: border-color .2s; opacity: .65;
}
.about-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-thumb.active, .about-thumb:hover { border-color: var(--accent); opacity: 1; }

/* ─── SERVICE GALLERY ─────────────────────────────── */
.service-gallery { position: relative; overflow: hidden; }
.service-gallery .service-card-thumb { aspect-ratio: 16/9; display: block; }
.service-gallery-thumbs {
    display: flex; gap: 4px; padding: 6px 8px;
    background: rgba(0,0,0,.3); overflow-x: auto;
}
.sg-thumb {
    width: 48px; height: 48px; flex-shrink: 0;
    border: 2px solid transparent; border-radius: 3px;
    overflow: hidden; cursor: pointer; background: none; padding: 0;
    opacity: .6; transition: border-color .2s, opacity .2s;
}
.sg-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sg-thumb.active, .sg-thumb:hover { border-color: var(--accent); opacity: 1; }
.service-img-expand {
    position: absolute; bottom: 8px; right: 8px;
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(10,10,10,.7); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity .2s;
}
.service-card-thumb:hover .service-img-expand { opacity: 1; }

/* ─── LIGHTBOX ─────────────────────────────────────── */
.mp-lightbox {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,.92);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: opacity .25s, visibility 0s .25s;
}
.mp-lightbox.open { opacity: 1; visibility: visible; transition: opacity .25s, visibility 0s 0s; }
.mp-lightbox img {
    max-width: 90vw; max-height: 88vh;
    object-fit: contain; border-radius: 4px;
    box-shadow: 0 24px 80px rgba(0,0,0,.8);
    transform: scale(.95); transition: transform .25s ease;
}
.mp-lightbox.open img { transform: scale(1); }
.mp-lightbox-close {
    position: absolute; top: 1.2rem; right: 1.5rem;
    background: none; border: none; color: rgba(255,255,255,.7);
    font-size: 2rem; cursor: pointer; line-height: 1;
    transition: color .2s;
}
.mp-lightbox-close:hover { color: var(--accent); }

/* ─── PÀGINES INDIVIDUALS (single-servei / single-dj) ─── */

/* Hero */
.single-hero {
    position: relative;
    min-height: 60vh;
    display: flex; align-items: flex-end;
    padding: 0 5vw 5rem;
    background: var(--deep);
    overflow: hidden;
    margin-top: 64px;
}
.single-hero--dj { min-height: 70vh; }
.single-hero-img {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
}
.single-hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.single-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,.95) 0%, rgba(10,10,10,.5) 60%, rgba(10,10,10,.2) 100%);
}
.single-hero-content { position: relative; z-index: 2; max-width: 700px; }
.single-hero-title {
    font-family: var(--display);
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: .9; letter-spacing: .03em;
    margin: .5rem 0 1.5rem;
}

/* Cos */
.single-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
    padding: 5rem 5vw;
    background: var(--black);
    align-items: start;
}
.single-body--dj { background: var(--deep); }
.single-body-text .entry-content { color: var(--muted); line-height: 1.85; font-size: 1.05rem; }
.single-body-text .entry-content p { margin-bottom: 1.1rem; }
.single-body-text .entry-content h2,
.single-body-text .entry-content h3 { font-family: var(--display); color: var(--white); margin: 1.5rem 0 .5rem; letter-spacing: .04em; }

/* Avatar gran si no hi ha foto */
.dj-avatar-big {
    width: 100px; height: 100px; border-radius: 50%;
    background: var(--surface); border: 2px solid rgba(232,193,74,.3);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--display); font-size: 2.5rem; color: var(--accent);
    margin-bottom: 2rem;
}

/* Galeria single */
.single-gallery { display: flex; flex-direction: column; gap: 8px; }
.single-gallery-main {
    position: relative; overflow: hidden; border-radius: var(--radius);
    aspect-ratio: 4/3;
}
.single-gallery-main a { display: block; width: 100%; height: 100%; position: relative; }
.single-gallery-main img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.single-gallery-main a:hover img { transform: scale(1.03); }
.single-gallery-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 6px;
}
.single-gallery-thumb {
    display: block; aspect-ratio: 1; overflow: hidden;
    border-radius: var(--radius); border: 2px solid transparent;
    opacity: .65; transition: opacity .2s, border-color .2s;
}
.single-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.single-gallery-thumb.active,
.single-gallery-thumb:hover { border-color: var(--accent); opacity: 1; }

/* Imatge sola */
.single-img-solo {
    position: relative; overflow: hidden; border-radius: var(--radius);
}
.single-img-solo a { display: block; position: relative; }
.single-img-solo img { width: 100%; display: block; border-radius: var(--radius); }

/* Responsive */
@media (max-width: 768px) {
    .single-body { grid-template-columns: 1fr; }
    .single-hero { min-height: 50vh; padding-bottom: 3rem; }
}

/* ═══════════════════════════════════════════════════
   SINGLE SERVEI
   ═══════════════════════════════════════════════════ */

/* Hero */
.sp-hero {
    position: relative;
    min-height: 92vh;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 0 5vw 5rem;
    margin-top: 64px;
    overflow: hidden;
}
.sp-hero-bg { position: absolute; inset: 0; }
.sp-hero-bg-img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block;
    transition: opacity .4s ease;
}
.sp-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,1) 0%, rgba(10,10,10,.7) 45%, rgba(10,10,10,.25) 100%);
}
.sp-hero-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 60px 60px;
}
.sp-hero-inner { position: relative; z-index: 2; max-width: 720px; }
.sp-breadcrumb {
    display: flex; align-items: center; gap: .5rem;
    font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 1.5rem;
}
.sp-breadcrumb a { color: var(--muted); text-decoration: none; transition: color .2s; }
.sp-breadcrumb a:hover { color: var(--accent); }
.sp-breadcrumb span:last-child { color: var(--accent); }
.sp-hero-icon {
    font-size: 2.8rem; margin-bottom: 1rem; display: block;
    filter: drop-shadow(0 0 20px rgba(232,193,74,.3));
}
.sp-hero-title {
    font-family: var(--display);
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: .9; letter-spacing: .02em;
    margin-bottom: 1.2rem; color: var(--white);
}
.sp-hero-sub {
    font-size: 1.05rem; color: var(--muted); font-weight: 300;
    max-width: 520px; line-height: 1.7; margin-bottom: 2.2rem;
}
.sp-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Miniatures al hero */
.sp-hero-thumbs {
    position: absolute; bottom: 5rem; right: 5vw; z-index: 2;
    display: flex; flex-direction: column; gap: 8px;
}
.sp-hero-thumb {
    width: 64px; height: 64px; border-radius: var(--radius);
    overflow: hidden; border: 2px solid transparent;
    cursor: pointer; padding: 0; background: none;
    opacity: .6; transition: opacity .2s, border-color .2s;
}
.sp-hero-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sp-hero-thumb.active, .sp-hero-thumb:hover { border-color: var(--accent); opacity: 1; }

/* Cos */
.sp-body {
    display: grid; grid-template-columns: 1fr 420px;
    gap: 5vw; padding: 5rem 5vw;
    background: var(--black); align-items: start;
}
.sp-content-label {
    font-size: .65rem; font-weight: 700; letter-spacing: .2em;
    text-transform: uppercase; color: var(--accent);
    display: flex; align-items: center; gap: 10px; margin-bottom: 1.5rem;
}
.sp-content-label::before { content: ''; width: 24px; height: 1px; background: var(--accent); }
.sp-entry-content { color: rgba(245,244,240,.7); line-height: 1.9; font-size: 1.05rem; }
.sp-entry-content p { margin-bottom: 1.1rem; }
.sp-entry-content h2, .sp-entry-content h3 {
    font-family: var(--display); color: var(--white);
    font-size: 2rem; letter-spacing: .04em; margin: 2rem 0 .6rem;
}
.sp-entry-content ul, .sp-entry-content ol {
    padding-left: 1.4rem; margin-bottom: 1rem; color: rgba(245,244,240,.65);
}
.sp-entry-content li { margin-bottom: .4rem; }

/* CTA inline */
.sp-inline-cta {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1.5rem; margin-top: 3rem; padding: 1.8rem 2rem;
    background: var(--surface); border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius); flex-wrap: wrap;
}
.sp-inline-cta-text { display: flex; flex-direction: column; gap: .3rem; }
.sp-inline-cta-text strong { font-size: 1rem; color: var(--white); }
.sp-inline-cta-text span { font-size: .88rem; color: var(--muted); }

/* Galeria lateral */
.sp-gallery { display: flex; flex-direction: column; gap: 10px; position: sticky; top: 80px; }
.sp-gallery-main {
    position: relative; overflow: hidden;
    border-radius: var(--radius); aspect-ratio: 4/3;
}
.sp-gallery-hero-link { display: block; width: 100%; height: 100%; position: relative; }
.sp-gallery-hero-link img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.sp-gallery-hero-link:hover img { transform: scale(1.03); }
.sp-gallery-expand {
    position: absolute; bottom: 12px; right: 12px;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(10,10,10,.75); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity .2s;
}
.sp-gallery-hero-link:hover .sp-gallery-expand { opacity: 1; }
.sp-gallery-strip { display: flex; gap: 8px; flex-wrap: wrap; }
.sp-gal-thumb {
    width: 72px; height: 56px; border-radius: var(--radius);
    overflow: hidden; border: 2px solid transparent;
    cursor: pointer; padding: 0; background: none;
    opacity: .6; transition: opacity .2s, border-color .2s;
}
.sp-gal-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sp-gal-thumb.active, .sp-gal-thumb:hover { border-color: var(--accent); opacity: 1; }

/* Serveis relacionats */
.sp-related {
    padding: 5rem 5vw;
    background: var(--deep);
    border-top: 1px solid var(--border);
}
.sp-related-title {
    font-family: var(--display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: .03em; margin-bottom: 2.5rem;
}
.sp-related-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.5rem;
}
.sp-related-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    text-decoration: none; color: var(--white);
    transition: border-color .2s, transform .2s;
    display: flex; flex-direction: column;
}
.sp-related-card:hover { border-color: rgba(232,193,74,.4); transform: translateY(-3px); }
.sp-related-img { aspect-ratio: 16/9; overflow: hidden; }
.sp-related-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.sp-related-card:hover .sp-related-img img { transform: scale(1.05); }
.sp-related-icon {
    aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center;
    font-size: 2rem; background: var(--surface);
}
.sp-related-info { padding: 1rem 1.2rem; }
.sp-related-info h3 { font-family: var(--display); font-size: 1.3rem; letter-spacing: .04em; margin-bottom: .4rem; }
.sp-related-info span { font-size: .75rem; color: var(--accent); letter-spacing: .1em; text-transform: uppercase; }

/* ═══════════════════════════════════════════════════
   SINGLE DJ
   ═══════════════════════════════════════════════════ */

/* Hero partit: foto esquerra + info dreta */
.dj-hero {
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 100vh; margin-top: 64px; overflow: hidden;
}
.dj-hero-photo {
    position: relative; overflow: hidden;
    background: var(--deep);
}
.dj-hero-photo-img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.dj-hero-initials {
    width: 100%; height: 100%; min-height: 500px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--display); font-size: 12vw; color: rgba(232,193,74,.15);
}
.dj-hero-photo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, transparent 60%, var(--black) 100%),
                linear-gradient(to top, rgba(10,10,10,.4) 0%, transparent 60%);
}
.dj-hero-content {
    background: var(--black);
    padding: 6rem 5vw 5rem;
    display: flex; flex-direction: column; justify-content: flex-end;
}
.dj-hero-name {
    font-family: var(--display);
    font-size: clamp(3rem, 5vw, 5.5rem);
    line-height: .9; letter-spacing: .02em;
    margin: .8rem 0 .6rem;
}
.dj-hero-style {
    font-size: .8rem; letter-spacing: .18em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 2rem;
}
.dj-hero-stats { display: flex; gap: 2.5rem; margin-bottom: 2.5rem; }
.dj-hero-stat { display: flex; flex-direction: column; gap: .2rem; }
.dj-hero-stat-num { font-family: var(--display); font-size: 2.5rem; color: var(--accent); line-height: 1; }
.dj-hero-stat-label { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }
.dj-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.dj-hero-gallery-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.dj-ht {
    width: 56px; height: 56px; border-radius: var(--radius); overflow: hidden;
    border: 2px solid transparent; cursor: pointer; padding: 0; background: none;
    opacity: .55; transition: opacity .2s, border-color .2s;
}
.dj-ht img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dj-ht.active, .dj-ht:hover { border-color: var(--accent); opacity: 1; }

/* Cos */
.dj-body { background: var(--deep); }
.dj-body-grid {
    display: grid; grid-template-columns: 1fr 400px;
    gap: 5vw; padding: 5rem 5vw; align-items: start;
}
.dj-bio-col {}
.dj-genres-block { margin-top: 2.5rem; }
.dj-genres-tags { display: flex; flex-wrap: wrap; gap: .6rem; }
.dj-genre-tag {
    padding: .35rem .9rem;
    background: rgba(232,193,74,.08);
    border: 1px solid rgba(232,193,74,.2);
    border-radius: 2px;
    font-size: .72rem; font-weight: 600; letter-spacing: .12em;
    text-transform: uppercase; color: var(--accent);
}

/* Galeria DJ */
.dj-gallery-col { position: sticky; top: 80px; }
.dj-gallery-main {
    position: relative; overflow: hidden; border-radius: var(--radius);
    aspect-ratio: 3/4;
}
.dj-gallery-main a { display: block; width: 100%; height: 100%; position: relative; }
.dj-gallery-main img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; transition: transform .4s ease; }
.dj-gallery-main a:hover img { transform: scale(1.03); }
.dj-gallery-main a:hover .sp-gallery-expand { opacity: 1; }
.dj-gallery-strip { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.dj-gal-thumb {
    width: 68px; height: 68px; border-radius: var(--radius); overflow: hidden;
    border: 2px solid transparent; cursor: pointer; padding: 0; background: none;
    opacity: .6; transition: opacity .2s, border-color .2s;
}
.dj-gal-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.dj-gal-thumb.active, .dj-gal-thumb:hover { border-color: var(--accent); opacity: 1; }

/* CTA contacte DJ */
.dj-contact-cta {
    background: var(--black); padding: 5rem 5vw;
    border-top: 1px solid var(--border);
    text-align: center;
}
.dj-contact-cta-inner { max-width: 600px; margin: 0 auto; }
.dj-contact-cta h2 { font-family: var(--display); font-size: clamp(2.5rem,5vw,4rem); letter-spacing: .03em; margin-bottom: 1rem; }
.dj-contact-cta p { color: var(--muted); font-size: 1.05rem; margin-bottom: 2rem; }

/* DJs relacionats */
.dj-related { background: var(--black); }
.dj-related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1.5rem; }
.dj-related-card {
    text-decoration: none; color: var(--white);
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    transition: border-color .2s, transform .2s;
}
.dj-related-card:hover { border-color: rgba(232,193,74,.4); transform: translateY(-3px); }
.dj-related-photo { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--surface); }
.dj-related-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; transition: transform .3s; }
.dj-related-card:hover .dj-related-photo img { transform: scale(1.05); }
.dj-related-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,.6) 0%, transparent 50%); }
.dj-related-initials {
    width: 100%; height: 100%; min-height: 160px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--display); font-size: 3rem; color: rgba(232,193,74,.2);
}
.dj-related-info { padding: 1rem 1.1rem; }
.dj-related-info h3 { font-family: var(--display); font-size: 1.3rem; letter-spacing: .04em; margin-bottom: .3rem; }
.dj-related-info p { font-size: .75rem; color: var(--accent); letter-spacing: .1em; text-transform: uppercase; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .sp-body { grid-template-columns: 1fr; }
    .sp-gallery { position: static; }
    .sp-hero-thumbs { display: none; }
    .dj-body-grid { grid-template-columns: 1fr; }
    .dj-gallery-col { position: static; }
}
@media (max-width: 768px) {
    .dj-hero { grid-template-columns: 1fr; min-height: auto; }
    .dj-hero-photo { aspect-ratio: 3/2; }
    .dj-hero-photo-overlay { background: linear-gradient(to top, rgba(10,10,10,.8) 0%, transparent 60%); }
    .dj-hero-content { padding: 2.5rem 5vw 3rem; }
    .sp-hero { min-height: 75vh; }
    .sp-hero-thumbs { display: none; }
    .sp-inline-cta { flex-direction: column; align-items: flex-start; }
}

/* ─── RESSENYES / CLIENTS ────────────────────────────────────────────────────── */
.reviews-section {
    background: var(--deep);
    padding: 7rem 0;          /* padding vertical, horitzontal 0 */
    overflow: hidden;
}
/* El wrapper intern controla el padding horitzontal, igual que la resta de seccions */
.reviews-inner {
    padding: 0 5vw;
}
.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}
.reviews-header-right {
    display: flex;
    align-items: baseline;
    gap: .6rem;
    flex-shrink: 0;
}
.reviews-rating {
    font-family: var(--display);
    font-size: 2.8rem;
    color: var(--accent);
    letter-spacing: .04em;
    line-height: 1;
}
.reviews-rating-meta {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}
.reviews-stars {
    display: flex;
    gap: .15rem;
    color: var(--accent);
    font-size: 1rem;
    line-height: 1;
}
.reviews-rating-label {
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted);
}
/* Widget: ample complet però amb padding lateral propi */
.reviews-widget {
    width: 100%;
    padding: 0 5vw;
    box-sizing: border-box;
}
/* Forçar que Trustindex respecti el contenidor */
.reviews-widget .trustindex-widget,
.reviews-widget .ti-widget {
    background: transparent !important;
    box-shadow: none !important;
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.reviews-widget .ti-widget-header  { background: transparent !important; border-bottom: 1px solid var(--border) !important; }
.reviews-widget .ti-review-item    { background: var(--card) !important; border: 1px solid var(--border) !important; border-radius: var(--radius) !important; transition: border-color .2s !important; }
.reviews-widget .ti-review-item:hover { border-color: rgba(232,193,74,.3) !important; }
.reviews-widget .ti-review-body    { color: var(--muted) !important; }
.reviews-widget .ti-review-author  { color: var(--white) !important; }
.reviews-widget .ti-date           { color: var(--muted) !important; }
.reviews-widget .ti-stars svg path,
.reviews-widget .ti-stars svg polygon { fill: var(--accent) !important; }
.reviews-widget a                  { color: var(--accent) !important; }
.reviews-widget iframe             { width: 100% !important; max-width: 100% !important; border: none !important; }

@media (max-width: 768px) {
    .reviews-section  { padding: 5rem 0; }
    .reviews-inner,
    .reviews-widget   { padding-left: 5vw; padding-right: 5vw; }
    .reviews-header   { flex-direction: column; align-items: flex-start; }
}
