/* ============================================
   FRANKIE FOTI - HOMEPAGE STYLES
   Specific to index.html
   ============================================ */

/* --- LOGO CAROUSEL --- */
.logo-carousel-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    padding: 30px 0;
}

.logo-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg,
            transparent 0%,
            rgba(0, 0, 0, 1) 10%,
            rgba(0, 0, 0, 1) 90%,
            transparent 100%);
    mask-image: linear-gradient(90deg,
            transparent 0%,
            rgba(0, 0, 0, 1) 10%,
            rgba(0, 0, 0, 1) 90%,
            transparent 100%);
}

.logo-carousel-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    will-change: transform;
    animation: logoCarouselScroll 45s linear infinite;
}

.logo-carousel-track:hover {
    animation-play-state: paused;
}

@keyframes logoCarouselScroll {
    0% {
        transform: translateX(0);
    }

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

.logo-carousel-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 135px;
    padding: 0 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(0%) brightness(1);
    opacity: 0.9;
}

.logo-carousel-item:hover {
    opacity: 1;
    transform: scale(1.08);
    filter: grayscale(0%) brightness(1.05);
}

.logo-carousel-item img {
    max-height: 100%;
    max-width: 270px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

@media (max-width: 1200px) {
    .logo-carousel-section {
        padding: 25px 0;
    }

    .logo-carousel-track {
        gap: 60px;
        animation-duration: 40s;
    }

    .logo-carousel-item {
        height: 112px;
    }

    .logo-carousel-item img {
        max-width: 225px;
    }
}

@media (max-width: 768px) {
    .logo-carousel-section {
        padding: 20px 0;
    }

    .logo-carousel-track {
        gap: 45px;
        animation-duration: 35s;
    }

    .logo-carousel-item {
        height: 82px;
    }

    .logo-carousel-item img {
        max-width: 180px;
    }

    .logo-carousel-wrapper {
        -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 1) 5%, rgba(0, 0, 0, 1) 95%, transparent 100%);
        mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 1) 5%, rgba(0, 0, 0, 1) 95%, transparent 100%);
    }
}

@media (max-width: 480px) {
    .logo-carousel-section {
        padding: 15px 0;
    }

    .logo-carousel-track {
        gap: 35px;
        animation-duration: 30s;
    }

    .logo-carousel-item {
        height: 68px;
    }

    .logo-carousel-item img {
        max-width: 150px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .logo-carousel-track {
        animation-duration: 90s;
    }
}

/* --- VIDEO REEL SECTION --- */
.video-reel-section {
    position: relative;
    padding: var(--section-padding-y) var(--section-padding-x);
    background: linear-gradient(180deg, #030303 0%, #0a0a0a 50%, #030303 100%);
    overflow: hidden;
}

.video-reel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.1) 0%, var(--accent-color) 100%);
}

.video-reel-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.video-reel-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.video-reel-header {
    text-align: center;
    margin-bottom: var(--space-lg);
    padding-top: 40px;
}

.video-reel-label {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 16px;
    display: block;
    font-weight: 500;
}

.video-reel-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 400;
    color: var(--text-color);
    line-height: 1.15;
    margin: 0;
}

.video-reel-title span {
    font-style: italic;
    color: var(--accent-color);
}

.video-reel-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 1px rgba(212, 175, 55, 0.3);
}

.video-reel-wrapper::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
    z-index: 2;
}

.video-reel-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-reel-embed iframe,
.video-reel-embed video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-reel-cta {
    text-align: center;
    margin-top: var(--space-lg);
}

/* Watch Button */
.btn-watch-reel {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #000;
    background: linear-gradient(135deg, #d4af37 0%, #f5e6a3 40%, #d4af37 80%, #b8962e 100%);
    background-size: 300% 100%;
    border: none;
    padding: 20px 48px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
    cursor: pointer;
}

.btn-watch-reel::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.btn-watch-reel:hover {
    background-position: 100% 0;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.45), 0 0 50px rgba(212, 175, 55, 0.2);
}

.btn-watch-reel:hover::before {
    left: 130%;
}

.btn-watch-reel svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.btn-watch-reel:hover svg {
    transform: scale(1.15);
}

.btn-watch-reel--inline {
    padding: 16px 32px;
    font-size: var(--text-xs);
}

/* Secondary button */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-color);
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.5);
    padding: 18px 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

/* Premium Buttons */
.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 18px 36px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 2px;
}

.btn-premium--primary {
    color: #000;
    background: linear-gradient(135deg, #d4af37 0%, #f5e6a3 40%, #d4af37 80%, #b8962e 100%);
    background-size: 300% 100%;
    border: none;
}

.btn-premium--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.btn-premium--primary:hover {
    background-position: 100% 0;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4), 0 0 50px rgba(212, 175, 55, 0.15);
}

.btn-premium--primary:hover::before {
    left: 130%;
}

.btn-premium--outline {
    color: var(--accent-color);
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.5);
}

.btn-premium--outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-premium--outline:hover {
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    color: #fff;
}

.btn-premium--outline:hover::before {
    opacity: 1;
}

.btn-premium-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-premium-icon svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.btn-premium:hover .btn-premium-icon svg {
    transform: scale(1.15);
}

.btn-premium-text {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .btn-premium {
        padding: 16px 28px;
        font-size: var(--text-xs);
        box-sizing: border-box;
        justify-content: center;
    }

    .video-reel-section {
        padding: var(--space-lg) var(--space-md);
    }

    .video-reel-section::before {
        height: 60px;
    }

    .btn-watch-reel {
        padding: 16px 36px;
        font-size: var(--text-xs);
        gap: 10px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        justify-content: center;
    }

    .btn-watch-reel--inline {
        padding: 14px 28px;
    }
}

@media (max-width: 480px) {

    .btn-premium,
    .btn-watch-reel {
        padding: 14px 20px;
        font-size: 0.7rem;
        letter-spacing: 0.1em;
    }
}

/* --- PULL QUOTE --- */
.pull-quote-section {
    position: relative;
    padding: var(--section-padding-y) var(--section-padding-x);
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 50%, #0a0a0a 100%);
    overflow: hidden;
}

.pull-quote-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.pull-quote-card {
    position: relative;
    padding: var(--space-lg) var(--space-xl);
    background: linear-gradient(165deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.02) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 2px;
    text-align: center;
}

.pull-quote-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.pull-quote-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    right: 25%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
}

.pull-quote-icon {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 400;
    color: var(--accent-color);
    opacity: 0.25;
    line-height: 0.6;
    margin-bottom: var(--space-sm);
    display: block;
}

.pull-quote-text {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 400;
    font-style: italic;
    color: var(--text-color);
    line-height: 1.8;
    margin: 0 0 var(--space-md) 0;
    letter-spacing: 0.02em;
}

.pull-quote-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.pull-quote-divider {
    width: 60px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    margin-bottom: 16px;
}

.pull-quote-name {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-color);
    margin: 0;
}

.pull-quote-role {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-style: italic;
    color: var(--accent-color);
    margin: 0;
}

.pull-quote-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.pull-quote-card>* {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .pull-quote-card {
        padding: var(--space-md) var(--space-sm);
    }

    .pull-quote-text {
        font-size: var(--text-lg);
    }
}

/* --- EXPANDED BIO SECTION --- */
.expanded-bio-section {
    position: relative;
    padding: var(--section-padding-y) var(--section-padding-x);
    background: linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
}

.expanded-bio-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.bio-image-wrapper {
    position: relative;
}

.bio-image-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 0;
}

.bio-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(1.05);
    transition: filter 0.4s ease;
}

.bio-image:hover {
    filter: brightness(1.1);
}

.bio-content {
    padding: var(--space-md) 0;
}

.bio-label {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 16px;
    display: block;
    font-weight: 500;
}

.bio-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 400;
    color: var(--text-color);
    line-height: 1.15;
    margin: 0 0 var(--space-md) 0;
}

.bio-title span {
    font-style: italic;
    color: var(--accent-color);
}

.bio-text {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.85;
    margin-bottom: var(--space-sm);
}

.bio-text strong {
    color: var(--accent-color);
    font-weight: 600;
}

.bio-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.bio-highlight {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    padding: 8px 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(212, 175, 55, 0.05);
    transition: all 0.3s ease;
}

.bio-highlight:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: rgba(212, 175, 55, 0.1);
}

@media (max-width: 900px) {
    .expanded-bio-container {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .bio-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
    position: relative;
    padding: var(--section-padding-y) var(--section-padding-x);
    background: linear-gradient(180deg, #030303 0%, #0a0a0a 30%, #0a0a0a 70%, #030303 100%);
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 90px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.1) 0%, var(--accent-color) 100%);
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 1;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 50px;
}

.testimonials-label {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 16px;
    display: block;
    font-weight: 500;
}

.testimonials-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 400;
    color: var(--text-color);
    line-height: 1.15;
    margin: 0;
}

.testimonials-title span {
    font-style: italic;
    color: var(--accent-color);
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials-track.no-transition {
    transition: none;
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 0 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    box-sizing: border-box;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-inner {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 2px;
    padding: 55px 80px 50px;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.testimonial-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
    opacity: 0.6;
}

.testimonial-inner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30%;
    right: 30%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.3) 50%, transparent 100%);
}

.testimonial-quote-icon {
    display: none;
}

.testimonial-stars {
    display: flex;
    gap: 10px;
    margin-bottom: 32px;
    justify-content: center;
    padding-top: 0;
    width: 100%;
}

.testimonial-star {
    width: 15px;
    height: 15px;
    fill: var(--accent-color);
    filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.35));
    opacity: 0.95;
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 400;
    font-style: italic;
    color: var(--text-color);
    line-height: 1.9;
    text-align: center;
    margin: 0 0 35px 0;
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.01em;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 5px;
}

.testimonial-divider {
    width: 55px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
    margin-bottom: 20px;
    border-radius: 1px;
    opacity: 0.85;
}

.testimonial-name {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--text-color);
    margin: 0;
}

.testimonial-role {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    letter-spacing: 0.5px;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: clamp(10px, 2vw, 16px);
    margin-top: clamp(20px, 3vw, 50px);
    padding-bottom: 10px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0;
}

.testimonial-dot::after {
    display: none;
}

.testimonial-dot.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.15);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.5), 0 0 20px rgba(212, 175, 55, 0.2);
}

.testimonial-dot:hover {
    background: rgba(212, 175, 55, 0.45);
    border-color: rgba(212, 175, 55, 0.6);
    transform: scale(1.1);
}

.testimonial-dot.active:hover {
    background: var(--accent-color);
    transform: scale(1.15);
}

.testimonials-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 10px;
    z-index: 10;
}

.testimonials-carousel {
    position: relative;
    overflow: visible;
    padding: 0 60px;
}

.testimonial-arrow {
    width: 48px;
    height: 48px;
    border: 1.5px solid rgba(212, 175, 55, 0.25);
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    backdrop-filter: blur(4px);
}

.testimonial-arrow:hover {
    border-color: var(--accent-color);
    background: rgba(212, 175, 55, 0.08);
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.testimonial-arrow svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent-color);
    stroke-width: 2;
    fill: none;
    transition: stroke 0.3s ease;
}

.testimonial-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.testimonial-glow.left {
    top: 50%;
    left: -150px;
    transform: translateY(-50%);
}

.testimonial-glow.right {
    top: 50%;
    right: -150px;
    transform: translateY(-50%);
}

@media (max-width: 1200px) {
    .testimonials-arrows {
        left: -20px;
        right: -20px;
    }
}

@media (max-width: 1024px) {
    .testimonials-section {
        padding: 90px 0 70px;
    }

    .testimonial-inner {
        padding: 50px 50px 45px;
    }

    .testimonials-arrows {
        display: none;
    }

    .testimonial-quote-icon {
        font-size: 55px;
        top: 20px;
    }

    .testimonials-container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 70px 0 50px;
    }

    .testimonials-container {
        padding: 0 16px;
    }

    .testimonials-header {
        margin-bottom: 40px;
    }

    .testimonials-nav {
        margin-top: 30px;
    }

    .testimonial-inner {
        padding: 45px 32px 40px;
    }

    .testimonial-quote {
        font-size: 1.05rem;
        line-height: 1.85;
    }

    .testimonial-quote-icon {
        font-size: 45px;
        top: 15px;
    }

    .testimonial-glow {
        display: none;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 55px 0 40px;
    }

    .testimonials-section::before {
        height: 70px;
    }

    .testimonials-container {
        padding: 0 12px;
    }

    .testimonial-inner {
        padding: 38px 20px 35px;
        min-height: auto;
    }

    .testimonial-quote {
        font-size: 0.98rem;
        line-height: 1.8;
    }

    .testimonial-stars {
        margin-bottom: 24px;
        gap: 8px;
    }

    .testimonial-star {
        width: 13px;
        height: 13px;
    }

    .testimonial-quote-icon {
        font-size: 40px;
        top: 12px;
    }

    .testimonial-name {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    .testimonial-role {
        font-size: 0.7rem;
    }

    .testimonial-dot {
        width: 9px;
        height: 9px;
    }

    .testimonials-nav {
        margin-top: 22px;
        gap: 14px;
    }

    .testimonial-divider {
        width: 40px;
        margin-bottom: 14px;
    }
}

/* --- REVEAL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-fade {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity;
}

.reveal-fade.revealed {
    opacity: 1;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

.reveal-stagger>*:nth-child(1) {
    transition-delay: 0s;
}

.reveal-stagger>*:nth-child(2) {
    transition-delay: 0.08s;
}

.reveal-stagger>*:nth-child(3) {
    transition-delay: 0.16s;
}

.reveal-stagger>*:nth-child(4) {
    transition-delay: 0.24s;
}

.reveal-stagger>*:nth-child(5) {
    transition-delay: 0.32s;
}

.reveal-stagger>*:nth-child(6) {
    transition-delay: 0.40s;
}

.reveal-stagger>*:nth-child(7) {
    transition-delay: 0.48s;
}

.reveal-stagger>*:nth-child(8) {
    transition-delay: 0.56s;
}

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

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

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

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

.reveal-delay-5 {
    transition-delay: 0.5s !important;
}

.section-header-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-header-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.label-reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.label-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.title-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.1s;
}

.title-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.text-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.15s;
}

.text-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.button-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.25s;
}

.button-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.image-reveal {
    opacity: 0;
    transform: scale(0.97) translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-reveal.revealed {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.card-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.quote-reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.quote-reveal.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.line-reveal {
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.2s;
}

.line-reveal.revealed {
    transform: scaleX(1);
}

.video-reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-reveal.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-fade,
    .reveal-scale,
    .section-header-reveal,
    .label-reveal,
    .title-reveal,
    .text-reveal,
    .button-reveal,
    .image-reveal,
    .card-reveal,
    .quote-reveal,
    .line-reveal,
    .video-reveal {
        transition: opacity 0.3s ease;
        transform: none !important;
    }
}

/* --- MEET FRANKIE MOBILE --- */
@media (max-width: 768px) {
    .fe-block-yui_3_17_2_1_1660620130401_128601 {
        grid-area: 15/2/31/10 !important;
    }

    .fe-block-yui_3_17_2_1_1660620130401_155562 {
        grid-area: 2/2/14/10 !important;
    }

    .slideshow-container {
        width: 90% !important;
        max-width: 350px !important;
    }

    .btn-watch-reel,
    .btn-watch-reel--inline {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }

    .sqs-block-button-container {
        text-align: center;
    }

    #closeupGallerySlides,
    #masterGallerySlides {
        padding-top: 80% !important;
    }
}

@media (max-width: 480px) {
    .video-reel-section {
        padding: var(--space-md) 16px;
    }

    .video-reel-header {
        margin-bottom: var(--space-md);
    }

    .pull-quote-card {
        padding: var(--space-md) 16px;
    }

    .pull-quote-text {
        font-size: var(--text-base);
        line-height: 1.7;
    }

    .meet-frankie-title {
        font-size: var(--text-2xl) !important;
    }

    .meet-frankie-text {
        font-size: var(--text-sm);
    }

    .slideshow-container {
        width: 95% !important;
        max-width: 300px !important;
    }
}

/* --- INSTAGRAM REELS SECTION --- */
.instagram-reels-section {
    position: relative;
    padding: clamp(64px, 9vw, 112px) 0 clamp(72px, 10vw, 128px);
    background:
        radial-gradient(1200px 500px at 50% -10%, rgba(212, 175, 55, 0.12), transparent 60%),
        linear-gradient(180deg, #070707 0%, #0a0a0a 45%, #070707 100%);
    overflow: hidden;
}

.instagram-reels-section::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.35), transparent);
}

.instagram-reels-container {
    width: min(1240px, 92vw);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.instagram-reels-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: clamp(24px, 4vw, 36px);
}

.instagram-reels-label {
    display: inline-block;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: var(--text-xs);
    color: var(--gold);
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

.instagram-reels-title {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3.25rem);
    line-height: 1.05;
    color: #fff;
    font-family: "Playfair Display", serif;
    font-weight: 700;
}

.instagram-reels-title span {
    color: var(--gold);
}

.instagram-reels-subtitle {
    margin: 12px 0 0;
    font-size: clamp(0.95rem, 1.3vw, 1.05rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
    max-width: 620px;
}

.instagram-follow-btn {
    align-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.18);
    color: #f7e4a4;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 0.86rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.instagram-follow-btn:visited {
    color: #f7e4a4;
}

.instagram-follow-btn:hover {
    transform: translateY(-1px);
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.8);
    color: #fff;
}

.instagram-reels-rail-wrap {
    position: relative;
}

.instagram-reels-rail {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    overflow: visible;
    padding: 6px 2px 10px;
}

.instagram-reels-rail::-webkit-scrollbar {
    display: none;
}

.instagram-reels-rail::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
}

.instagram-reels-rail::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.45);
    border-radius: 999px;
}

.ig-reel-card {
    text-decoration: none;
    color: inherit;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.ig-reel-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.75);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.42);
}

.ig-reel-media {
    position: relative;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    background: #101010;
}

.ig-reel-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.38));
}

.ig-reel-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.ig-reel-card:hover .ig-reel-media img {
    transform: scale(1.03);
}

.ig-reel-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 56px;
    height: 56px;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.22);
    z-index: 2;
}

.ig-reel-play svg {
    width: 24px;
    height: 24px;
    color: #fff;
    margin-left: 2px;
}

.ig-reel-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px 14px;
}

.ig-reel-chip {
    font-family: "Poppins", sans-serif;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    background: rgba(212, 175, 55, 0.24);
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 999px;
    padding: 4px 8px;
}

.ig-reel-handle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.86rem;
    font-family: "Poppins", sans-serif;
}

.instagram-rail-arrow {
    display: none;
}

.instagram-reels-glow {
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    opacity: 0.35;
    z-index: 0;
}

.instagram-reels-glow-left {
    left: -180px;
    top: 20%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, transparent 70%);
}

.instagram-reels-glow-right {
    right: -180px;
    bottom: 8%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

@media (max-width: 1024px) {
    .instagram-reels-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .instagram-follow-btn {
        align-self: flex-start;
    }

    .instagram-rail-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .instagram-reels-container {
        width: min(1240px, 94vw);
    }

    .instagram-reels-rail {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .ig-reel-meta {
        padding: 10px 12px 12px;
    }
}

@media (max-width: 1100px) {
    .instagram-reels-rail {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .instagram-reels-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Guard rails: keep reel sections dark */
.video-reel-section,
.view-reel-section-new {
    background-color: #070707 !important;
}

.video-reel-embed,
.view-reel-video-inner {
    background-color: #000 !important;
}
