/* ============================================================
   DJ BOAZ — style.css
   ============================================================ */

:root {
    --clr-primary:        #003a37;
    --clr-primary-mid:    #005a54;
    --clr-bg:             #f0fffe;
    --clr-bg-mid:         #d6f5f2;
    --clr-bg-deep:        #baecea;
    --clr-accent:         #ff9c39;
    --clr-accent-light:   #ffc38d;
    --clr-text:           #182121;
    --clr-text-muted:     #4a6260;
    --header-h:           76px;
    --font:               'Heebo', sans-serif;
    --radius-pill:        50px;
    --shadow-card:        0 8px 40px rgba(0, 58, 55, 0.16);
    --ease:               cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
    font-family: var(--font);
    color: var(--clr-text);
    background: var(--clr-bg);
    direction: rtl;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
ul  { list-style: none; }
a   { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }


/* ── Entry animations ───────────────────── */
.animate-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

/* Slide from physical right */
.animate-in[data-from="right"] {
    transform: translateX(44px);
}

/* Slide from physical left */
.animate-in[data-from="left"] {
    transform: translateX(-44px);
}

.animate-in.visible {
    opacity: 1;
    transform: translate(0, 0);
}


/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed;
    top: 0; right: 0; left: 0;
    z-index: 100;
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
    background: rgba(240, 255, 254, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 28px rgba(0, 58, 55, 0.09);
}

.header-logo img {
    height: 54px;
    width: auto;
    transition: transform 0.3s var(--ease);
}
.header-logo img:hover { transform: scale(1.04); }

/* Nav — anchored to physical right */
.header-nav {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.header-nav ul {
    display: flex;
    align-items: center;
    gap: 0.1rem;
}

.header-nav a {
    display: block;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--clr-primary);
    padding: 0.42rem 0.85rem;
    border-radius: var(--radius-pill);
    transition: background 0.22s ease;
    white-space: nowrap;
}
.header-nav a:hover { background: rgba(0, 58, 55, 0.09); }

.header-nav a::after {
    content: '';
    display: block;
    height: 2px;
    background: var(--clr-accent);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.22s var(--ease);
    margin-top: 2px;
}
.header-nav a:hover::after { transform: scaleX(1); }

/* ── Hamburger toggle button ─────────────── */
.nav-toggle {
    display: none;
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    z-index: 110;
    transition: background 0.2s ease;
}
.nav-toggle:hover { background: rgba(0, 58, 55, 0.08); }

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--clr-primary);
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.3s ease;
    transform-origin: center;
}

/* X state when open */
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100svh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-h) + 2rem) 4vw 5rem;
    background: linear-gradient(148deg,
        var(--clr-bg)      0%,
        var(--clr-bg-mid)  55%,
        var(--clr-bg-deep) 100%
    );
    overflow: hidden;
}

/* ── Background blobs ─────────────────── */
.hero-bg-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.blob-1 {
    width: 680px;
    height: 680px;
    background: radial-gradient(circle, rgba(0,58,55,0.13) 0%, transparent 70%);
    top: -15%;
    right: -15%;
    animation: blobDrift 12s ease-in-out infinite alternate;
}

.blob-2 {
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(255,156,57,0.14) 0%, transparent 70%);
    bottom: -5%;
    left: -12%;
    animation: blobDrift 15s ease-in-out infinite alternate-reverse;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,58,55,0.09) 0%, transparent 70%);
    top: 35%;
    left: 45%;
    transform: translateX(-50%);
    animation: blobDrift 18s ease-in-out infinite alternate;
}

@keyframes blobDrift {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(30px, 20px) scale(1.08); }
}
.blob-3 { animation-name: blobDrift3; }
@keyframes blobDrift3 {
    from { transform: translateX(-50%) translate(0, 0) scale(1); }
    to   { transform: translateX(-50%) translate(-20px, 25px) scale(1.06); }
}


/* ── Floating decorative elements ────── */
.deco {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

/* Music note — top right, energetic bounce */
.deco-1 {
    top: 9%; right: 5%;
    animation: noteBounce 2.2s ease-in-out infinite;
}
@keyframes noteBounce {
    0%, 100% { transform: translateY(0)    scale(1); }
    45%       { transform: translateY(-22px) scale(1.12); }
}


/* Star — top center, slow spin + float */
.deco-3 {
    top: 6%; left: 28%;
    animation: spinFloat 6s ease-in-out infinite;
}
@keyframes spinFloat {
    0%   { transform: rotate(0deg)   translateY(0); }
    50%  { transform: rotate(180deg) translateY(-16px); }
    100% { transform: rotate(360deg) translateY(0); }
}

/* Microphone — bottom left, float */
.deco-4 {
    bottom: 8%; left: 3%;
    animation: float 6.5s ease-in-out infinite;
    animation-delay: -3.2s;
}

/* Headphones — bottom right, gentle float */
.deco-5 {
    bottom: 10%; right: 4%;
    animation: float 5.5s ease-in-out infinite;
    animation-delay: -2s;
}

/* Small teal star — right mid, twinkle */
.deco-6 {
    top: 48%; right: 3%;
    animation: twinkle 3s ease-in-out infinite;
}
@keyframes twinkle {
    0%, 100% { transform: scale(1)   rotate(0deg);   opacity: 0.5; }
    50%       { transform: scale(1.4) rotate(20deg);  opacity: 1; }
}

/* Sound wave — bottom center, pulse */
.deco-7 {
    bottom: 14%; left: 50%;
    transform: translateX(-50%);
    animation: wavePulse 2s ease-in-out infinite;
}
@keyframes wavePulse {
    0%, 100% { transform: translateX(-50%) scaleY(1);   opacity: 0.65; }
    50%       { transform: translateX(-50%) scaleY(1.4); opacity: 1; }
}

/* Quarter note — top left, float */
.deco-8 {
    top: 5%; left: 6%;
    animation: float 8s ease-in-out infinite;
    animation-delay: -1.8s;
    opacity: 0.65;
}

/* Base float keyframe (used by deco-2, deco-5) */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-14px); }
}


/* ── Hero layout: two columns ─────────── */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: clamp(3rem, 6vw, 7rem);
    max-width: 1100px;
    width: 100%;
}

/* TEXT — right column (RTL flex-start) */
.hero-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
    text-align: right;
}

/* VISUAL — left column (RTL flex-end) */
.hero-visual {
    flex-shrink: 0;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--clr-accent);
    background: rgba(255, 156, 57, 0.1);
    border: 1.5px solid rgba(255, 156, 57, 0.35);
    padding: 0.38rem 1.1rem;
    border-radius: var(--radius-pill);
}

/* Title */
.hero-title {
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.12;
    color: var(--clr-primary);
    letter-spacing: -0.025em;
}

.hero-title-accent {
    color: var(--clr-accent);
    position: relative;
    display: inline-block;
}

.hero-title-accent::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: 0; left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-accent-light), var(--clr-accent));
    border-radius: 3px;
    transform-origin: right center;
    animation: underlineGrow 0.9s var(--ease) 1.2s both;
}

@keyframes underlineGrow {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

/* Subtitle */
.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

/* Genre tags */
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--clr-primary);
    background: rgba(0, 58, 55, 0.07);
    padding: 0.32rem 0.95rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(0, 58, 55, 0.15);
    transition: background 0.22s ease, color 0.22s ease, transform 0.2s ease;
    cursor: default;
}
.tag:hover {
    background: var(--clr-primary);
    color: var(--clr-bg);
    transform: translateY(-2px);
}

/* ── CTA Buttons ──────────────────────── */
.hero-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--font);
    font-size: 0.97rem;
    font-weight: 700;
    border-radius: var(--radius-pill);
    padding: 0.72rem 1.7rem;
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.22s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--clr-accent);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 156, 57, 0.38);
}
.btn-primary:hover {
    background: #e8872a;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 156, 57, 0.48);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
    background: transparent;
    color: var(--clr-primary);
    border: 2px solid rgba(0, 58, 55, 0.35);
}
.btn-secondary:hover {
    background: rgba(0, 58, 55, 0.07);
    border-color: var(--clr-primary);
    transform: translateY(-2px);
}
.btn-secondary:active { transform: translateY(0); }


/* ── Vinyl record ─────────────────────── */

/* Expanding ripple rings — grow continuously outward from disc edge */
.vinyl-ripple {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 156, 57, 0.55);
    animation: vinylRipple 3.2s ease-out infinite;
    pointer-events: none;
    z-index: 0;
}

.ripple-2 {
    border-color: rgba(0, 58, 55, 0.35);
    animation-delay: 1.07s;
}

.ripple-3 {
    animation-delay: 2.13s;
}

@keyframes vinylRipple {
    0%   { transform: scale(1.01); opacity: 0.6; }
    100% { transform: scale(1.5);  opacity: 0; }
}

.vinyl-wrap {
    position: relative;
    width: 400px;
    height: 400px;
    flex-shrink: 0;
    filter:
        drop-shadow(0 6px 28px rgba(255, 156, 57, 0.18))
        drop-shadow(0 4px 14px rgba(0, 0, 0, 0.35));
}

/* Spinning disc layer */
.vinyl-spin {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    animation: vinylSpin 7s linear infinite;
    border-radius: 50%;
}

@keyframes vinylSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Static photo — centered over label, never rotates */
.vinyl-photo-frame {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 216px;
    height: 216px;
    border-radius: 50%;
    overflow: hidden;
    background: #ddf4f1;
    z-index: 2;
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.45);
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Static tonearm — sits above disc, never rotates */
.vinyl-tonearm {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: visible;
    z-index: 3;
    pointer-events: none;
}

/* ── Scroll hint ──────────────────────── */
.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    letter-spacing: 0.05em;
    animation: bounceDown 2.2s ease-in-out infinite;
    z-index: 2;
}

@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    55%       { transform: translateX(-50%) translateY(8px); }
}


/* ============================================================
   RESPONSIVE — Tablet
   ============================================================ */
@media (max-width: 900px) {
    .hero-content {
        gap: 3rem;
    }

    .vinyl-wrap        { width: 320px; height: 320px; }
    .vinyl-photo-frame { width: 173px; height: 173px; }

    .deco-3, .deco-8 { display: none; }

    .deco-1 { right: 2%; top: 8%; }

    .deco-4 { left: 1%; bottom: 6%; }
    .deco-5 { right: 2%; bottom: 8%; }

    .header-nav a { font-size: 0.88rem; padding: 0.38rem 0.72rem; }
}

/* ============================================================
   RESPONSIVE — Mobile (stacks to column, image on top)
   ============================================================ */
@media (max-width: 640px) {
    :root { --header-h: 62px; }

    .header-logo img { height: 42px; }

    /* Show hamburger, hide nav by default */
    .nav-toggle { display: flex; }

    .header-nav {
        position: fixed;
        top: var(--header-h);
        right: 0; left: 0;
        background: rgba(240, 255, 254, 0.97);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        box-shadow: 0 8px 32px rgba(0, 58, 55, 0.13);
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.35s var(--ease), opacity 0.3s ease;
        z-index: 99;
    }

    .header-nav.nav-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .header-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0.75rem 0;
    }

    .header-nav a {
        font-size: 1rem;
        padding: 0.85rem 1.5rem;
        border-radius: 0;
        text-align: right;
    }

    .header-nav a::after { display: none; }

    .hero { padding-inline: 1.25rem; padding-bottom: 5rem; }

    .hero-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    /* Image goes on top when stacked */
    .hero-visual { order: -1; }

    .hero-text {
        align-items: center;
        text-align: center;
    }

    .hero-tags { justify-content: center; }

    .hero-cta { justify-content: center; }

    .vinyl-wrap        { width: 260px; height: 260px; }
    .vinyl-photo-frame { width: 140px; height: 140px; }

    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 0.98rem; }

    /* Show only the two most impactful decos */
    .deco             { display: none; }
    .deco-1           { display: block; right: 2%; top: 7%; }
    .deco-4           { display: block; bottom: 5%; left: 1%; }
}


/* ============================================================
   EVENTS VIDEOS SECTION
   ============================================================ */
.events-videos {
    padding: 7rem 4vw 6rem;
    background: linear-gradient(175deg, var(--clr-bg-mid) 0%, var(--clr-bg) 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle background decoration */
.events-videos::before {
    content: '';
    position: absolute;
    top: -120px; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(255,156,57,0.07) 0%, transparent 65%);
    pointer-events: none;
}

/* ── Section header ──────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 600px;
    margin-inline: auto;
    margin-bottom: 3.5rem;
}

.section-eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 0.6rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--clr-primary);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 0.85rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

/* ── Videos grid ─────────────────────────── */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* ── Video card ──────────────────────────── */
.video-card {
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 24px rgba(0, 58, 55, 0.12);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
    background: var(--clr-primary);
}
.video-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 58, 55, 0.22), 0 0 0 2px rgba(255, 156, 57, 0.45);
}

.video-wrap {
    position: relative;
    aspect-ratio: 9 / 16;
    width: 100%;
    overflow: hidden;
}

.video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--ease);
}
.video-card:hover .video-wrap video {
    transform: scale(1.04);
}

/* Overlay with play button */
.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 30, 28, 0.65) 0%,
        rgba(0, 0, 0, 0.15) 45%,
        transparent 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}
.video-card:hover .video-overlay {
    opacity: 0;
}

.play-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform 0.25s var(--ease), background 0.25s ease;
}
.play-btn svg {
    width: 22px;
    height: 22px;
    margin-right: -3px; /* optical center for play triangle */
}

/* Sound indicator badge */
.video-card::after {
    content: '🔇';
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 1.1rem;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 50px;
    padding: 4px 9px;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
    z-index: 5;
}
.video-card:hover::after {
    opacity: 1;
    content: '🔇 לחץ לקול';
    font-size: 0.72rem;
    color: #fff;
}
.video-card.has-sound::after {
    opacity: 1;
    content: '🔊';
    font-size: 1.1rem;
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 900px) {
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .events-videos {
        padding: 4.5rem 1.25rem 4rem;
    }

    .section-header { margin-bottom: 2.5rem; }

    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .video-card { border-radius: 14px; }
}


/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials {
    padding: 7rem 4vw 6rem;
    background: linear-gradient(170deg, var(--clr-bg) 0%, var(--clr-bg-mid) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 560px; height: 560px;
    background: radial-gradient(circle, rgba(255,156,57,0.07) 0%, transparent 65%);
    pointer-events: none;
}

/* ── Stats strip ──────────────────────────── */
.testi-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 640px;
    margin: 0 auto 4rem;
    background: #fff;
    border-radius: 20px;
    padding: 2rem 2.5rem;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 58, 55, 0.07);
}

.testi-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    text-align: center;
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--clr-primary);
    line-height: 1;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--clr-text-muted);
}

.testi-stat-divider {
    width: 1px;
    height: 44px;
    background: rgba(0, 58, 55, 0.15);
    flex-shrink: 0;
    margin: 0 0.5rem;
}

/* ── Grid ─────────────────────────────────── */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

/* ── Card ─────────────────────────────────── */
.testi-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem 2rem 1.6rem;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 58, 55, 0.07);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.testi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 58, 55, 0.18);
}

.testi-quote-mark {
    font-size: 5rem;
    line-height: 0.55;
    color: var(--clr-accent);
    font-family: Georgia, serif;
    opacity: 0.35;
    user-select: none;
    pointer-events: none;
}

.testi-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--clr-text);
    flex: 1;
}

.testi-text em {
    font-style: normal;
    font-weight: 700;
    color: var(--clr-primary);
}

.testi-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 58, 55, 0.09);
}

.testi-stars {
    color: var(--clr-accent);
    font-size: 0.88rem;
    letter-spacing: 2px;
    flex-shrink: 0;
}

.testi-author {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.15rem;
}

.testi-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--clr-primary);
}

.testi-event {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 700px) {
    .testimonials {
        padding: 4.5rem 1.25rem 4rem;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .testi-stats {
        padding: 1.5rem 1.25rem;
        margin-bottom: 2.5rem;
    }

    .stat-number { font-size: 1.9rem; }
}
