:root {
    --ivory: #fffaf4;
    --cream: #f4eadf;
    --champagne: #ead9c4;
    --nude: #d8bda6;
    --rose: #ead2ca;
    --black: #17120e;
    --charcoal: #241d17;
    --muted: #7d6f63;
    --gold: #c5a15b;
    --gold-soft: rgba(197, 161, 91, 0.28);
    --line: rgba(23, 18, 14, 0.1);
    --white-line: rgba(255, 250, 244, 0.13);
    --shadow: 0 26px 70px rgba(37, 27, 18, 0.12);
    --font-display: "Cinzel", Georgia, serif;
    --font-script: "Great Vibes", cursive;
    --font-body: "Outfit", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    background: var(--ivory);
    color: var(--black);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
::selection { background: var(--gold); color: #fff; }

#splash-screen {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at center, #fff 0%, var(--ivory) 44%, var(--cream) 100%);
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.splash-logo {
    width: min(210px, 42vw);
    animation: logoBreath 1.6s ease-in-out infinite alternate;
}

@keyframes logoBreath {
    from { transform: scale(0.94); opacity: 0.7; }
    to { transform: scale(1.02); opacity: 1; }
}

.site-nav {
    position: fixed;
    inset: 0 0 auto 0;
    height: 92px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    background: rgba(255, 250, 244, 0.74);
    border-bottom: 1px solid rgba(197, 161, 91, 0.16);
    backdrop-filter: blur(20px);
    transition: height 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.site-nav.scrolled {
    height: 76px;
    background: rgba(255, 250, 244, 0.94);
    box-shadow: 0 10px 35px rgba(23, 18, 14, 0.08);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand-mark img {
    width: 170px;
    height: 170px;
    object-fit: contain;
    transition: width 0.35s ease, height 0.35s ease;
}

.site-nav.scrolled .brand-mark img {
    width: 130px;
    height: 130px;
}

.menu-btn {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.45);
    color: var(--black);
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    cursor: pointer;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 2.2rem);
}

.nav-links a {
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2.2px;
    font-size: 0.68rem;
    font-weight: 500;
    color: rgba(23, 18, 14, 0.68);
    transition: color 0.25s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--black); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { width: 100%; }

.nav-links .nav-cta {
    padding: 0.72rem 1.1rem;
    border: 1px solid var(--gold);
    color: var(--black);
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { background: var(--black); color: #fff; border-color: var(--black); }

.nav-links .nav-lang {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-height: 34px;
    padding: 0.45rem 0.72rem;
    border: 1px solid rgba(197, 161, 91, 0.35);
    background: rgba(255, 255, 255, 0.42);
    color: var(--black);
    letter-spacing: 1.4px;
    line-height: 1;
}
.nav-links .nav-lang::after { display: none; }
.nav-links .nav-lang:hover {
    border-color: var(--gold);
    background: var(--ivory);
}

.us-flag {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 13px;
    flex: 0 0 auto;
    border-radius: 1px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(23, 18, 14, 0.18);
    background: repeating-linear-gradient(
        to bottom,
        #b22234 0,
        #b22234 1px,
        #fff 1px,
        #fff 2px
    );
}

.us-flag::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 7px;
    background: #3c3b6e;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    align-items: end;
    overflow: hidden;
    padding: 160px 5vw 5vw;
}

main > section {
    content-visibility: auto;
    contain-intrinsic-size: 760px;
}

.cinematic-hero {
    color: #fff;
    background: var(--black);
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media img,
.hero-media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
    filter: saturate(0.85) contrast(1.06);
    transform: scale(1.03);
}

.hero-media img { z-index: 0; }
.hero-media video { z-index: 1; }

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(23, 18, 14, 0.92) 0%, rgba(23, 18, 14, 0.56) 42%, rgba(23, 18, 14, 0.12) 100%),
        linear-gradient(0deg, rgba(23, 18, 14, 0.76) 0%, rgba(23, 18, 14, 0) 45%),
        radial-gradient(circle at 25% 70%, rgba(197, 161, 91, 0.18), transparent 35%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    padding-bottom: 3vw;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.69rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1rem;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.section-copy h2,
.academy-copy h2,
.booking-panel h2,
.service-detail h1 {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.06;
}

.hero h1 {
    font-size: clamp(3.4rem, 9vw, 8.6rem);
    max-width: 1050px;
    text-transform: uppercase;
}

.hero-script {
    font-family: var(--font-script);
    color: var(--champagne);
    font-size: clamp(2.6rem, 6vw, 6rem);
    line-height: 1;
    margin-top: -0.4rem;
}

.hero-copy {
    max-width: 590px;
    margin: 1.2rem 0 0;
    font-size: clamp(1rem, 1.7vw, 1.25rem);
    color: rgba(255, 250, 244, 0.82);
}

.hero-stat-panel {
    position: absolute;
    right: 5vw;
    bottom: 5vw;
    z-index: 3;
    width: min(310px, 30vw);
    padding: 1.35rem;
    border: 1px solid rgba(255, 250, 244, 0.22);
    background: rgba(255, 250, 244, 0.1);
    backdrop-filter: blur(16px);
}

.hero-stat-panel span,
.hero-stat-panel small {
    display: block;
    color: rgba(255, 250, 244, 0.7);
    font-size: 0.78rem;
}

.hero-stat-panel strong {
    display: block;
    font-family: var(--font-display);
    color: #fff;
    margin: 0.2rem 0 0.35rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.button-row,
.center-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
    margin-top: 2rem;
}

.center-actions { justify-content: center; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 48px;
    padding: 0.9rem 1.35rem;
    border: 1px solid transparent;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.72rem;
    font-weight: 600;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-dark { background: var(--black); color: #fff; border-color: var(--black); }
.btn-dark:hover { background: var(--gold); border-color: var(--gold); }
.btn-light { background: var(--ivory); color: var(--black); border-color: rgba(255, 250, 244, 0.76); }
.btn-light:hover { background: var(--champagne); border-color: var(--champagne); }
.btn-ghost { color: inherit; border-color: currentColor; background: transparent; }
.btn-ghost:hover { background: rgba(255, 250, 244, 0.12); }
.btn-gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-whatsapp { background: #25d366; color: #fff; border-color: #25d366; }

.review-prompt {
    margin-top: 1.4rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem;
}

.review-prompt p {
    margin: 0;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.78rem;
    color: var(--brown);
}

.marquee-strip {
    overflow: hidden;
    padding: 0.85rem 0;
    background: var(--cream);
    border-block: 1px solid var(--gold-soft);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-track span {
    padding: 0 2rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.68rem;
    white-space: nowrap;
}

@keyframes marquee {
    to { transform: translateX(-50%); }
}

.section {
    padding: clamp(78px, 9vw, 130px) 5vw;
}

.section-cream {
    background:
        linear-gradient(135deg, rgba(255, 250, 244, 0.58), rgba(234, 217, 196, 0.45)),
        var(--cream);
}

.split-grid {
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2.6rem, 7vw, 6.5rem);
    align-items: center;
}

.editorial-image {
    position: relative;
    min-height: 520px;
}

.editorial-image::before {
    content: "";
    position: absolute;
    inset: 22px -22px -22px 22px;
    border: 1px solid var(--gold-soft);
}

.editorial-image img {
    position: relative;
    width: 100%;
    height: 560px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.image-note {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    background: rgba(255, 250, 244, 0.88);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(197, 161, 91, 0.2);
    padding: 0.8rem 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.68rem;
}

.section-copy h2,
.section-heading h2,
.academy-copy h2,
.booking-panel h2 {
    font-size: clamp(2rem, 4.6vw, 4.5rem);
}

.section-copy p,
.section-heading p,
.academy-copy p,
.booking-panel p,
.page-hero p {
    color: var(--muted);
    max-width: 720px;
    font-size: 1rem;
}

.section-copy p + p { margin-top: 1rem; }

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1.6rem;
    color: var(--black);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.72rem;
    font-weight: 600;
    border-bottom: 1px solid var(--gold);
}

.section-heading {
    max-width: 860px;
    margin: 0 auto 3.4rem;
    text-align: center;
}

.section-heading p { margin-inline: auto; }

.service-preview-grid,
.testimonial-grid,
.service-list-grid,
.course-grid,
.faq-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
}

.service-card {
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    position: relative;
    overflow: hidden;
    padding: 1.4rem;
    color: #fff;
    text-decoration: none;
    background: var(--black);
}

.service-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-card::after,
.gallery-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(23, 18, 14, 0.78), rgba(23, 18, 14, 0.04) 68%);
}

.service-card:hover img,
.gallery-tile:hover img,
.gallery-tile:hover video,
.instagram-grid img:hover { transform: scale(1.06); }

.service-card span,
.service-card h3,
.service-card p {
    position: relative;
    z-index: 2;
}

.service-card span {
    color: var(--champagne);
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.service-card h3,
.feature-card h3,
.testimonial-card h3,
.course-card h3,
.program-card h3,
.contact-card h3,
.faq-card h3 {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    margin: 0.45rem 0;
}

.service-card p {
    color: rgba(255, 250, 244, 0.75);
    font-size: 0.9rem;
}

.transformations {
    background:
        radial-gradient(circle at 88% 10%, rgba(197, 161, 91, 0.12), transparent 28%),
        var(--ivory);
}

.masonry-preview,
.portfolio-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 0.8rem;
}

/* Academy video row — 3 equal columns on desktop */
.academy-video-row {
    grid-template-columns: repeat(3, 1fr) !important;
    grid-auto-rows: 300px !important;
}

.gallery-tile {
    position: relative;
    overflow: hidden;
    border: 0;
    cursor: pointer;
    background: var(--black);
    color: #fff;
    text-align: left;
}

.gallery-tile img,
.gallery-tile video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-tile video {
    display: block;
    background: var(--black);
}

.home-transform-slideshow {
    background: #17120e;
}

.home-transform-slideshow .home-transform-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #17120e;
    opacity: 0;
    animation: homeTransformFade 7s infinite;
}

.home-transform-slideshow .home-transform-slide:nth-child(2) {
    animation-delay: 3.5s;
}

.gallery-tile.home-transform-slideshow:hover .home-transform-slide {
    transform: none;
}

@keyframes homeTransformFade {
    0%, 45% { opacity: 1; }
    50%, 95% { opacity: 0; }
    100% { opacity: 1; }
}

.gallery-tile span {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.72rem;
}

.gallery-tile.tall { grid-row: span 2; }
.gallery-tile.wide { grid-column: span 2; }

.academy-band {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 3rem;
    align-items: center;
    padding: clamp(78px, 10vw, 140px) 5vw;
    background:
        linear-gradient(135deg, rgba(23, 18, 14, 0.96), rgba(36, 29, 23, 0.94)),
        var(--black);
    color: #fff;
}

.academy-copy p { color: rgba(255, 250, 244, 0.68); }

.academy-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin: 1.5rem 0 0;
}

.academy-points span,
.filter-btn {
    border: 1px solid var(--gold-soft);
    padding: 0.55rem 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.68rem;
}

.academy-cards {
    display: grid;
    gap: 1rem;
}

.academy-cards article,
.testimonial-card,
.feature-card,
.course-card,
.program-card,
.contact-card,
.faq-card,
.service-panel {
    background: rgba(255, 250, 244, 0.72);
    border: 1px solid var(--line);
    padding: clamp(1.4rem, 3vw, 2.2rem);
    box-shadow: 0 18px 55px rgba(37, 27, 18, 0.07);
}

.academy-cards article {
    background: rgba(255, 250, 244, 0.06);
    border-color: var(--white-line);
}

.academy-cards i {
    color: var(--gold);
    font-size: 2rem;
}

.academy-cards p,
.testimonial-card p,
.course-card p,
.program-card p,
.contact-card p,
.faq-card p,
.service-panel p { color: var(--muted); }

.academy-cards p { color: rgba(255, 250, 244, 0.62); }

.testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.testimonial-card p {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 1.05rem;
}

.testimonial-card span {
    display: block;
    margin-top: 1.2rem;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-size: 0.68rem;
}

.social-section {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 4rem;
    align-items: center;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.55rem;
}

.instagram-grid img {
    aspect-ratio: 1;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.booking-preview {
    padding: clamp(70px, 9vw, 120px) 5vw;
    background:
        linear-gradient(rgba(23, 18, 14, 0.58), rgba(23, 18, 14, 0.78)),
        url("../images/blonde.png") center/cover fixed;
}

.booking-panel {
    max-width: 820px;
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 4.5rem);
    color: #fff;
    background: rgba(23, 18, 14, 0.58);
    border: 1px solid rgba(255, 250, 244, 0.18);
    backdrop-filter: blur(18px);
    text-align: center;
}

.booking-panel p { margin-inline: auto; color: rgba(255, 250, 244, 0.72); }
.booking-panel .button-row { justify-content: center; }

.site-footer {
    background: var(--black);
    color: rgba(255, 250, 244, 0.65);
    padding: 4.5rem 5vw 1.6rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 0.8fr);
    gap: 2rem;
    max-width: 1240px;
    margin: 0 auto;
}

.footer-logo {
    width: 120px;
    margin-bottom: 1rem;
}

.footer-grid h3 {
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.9rem;
}

.footer-grid a,
.footer-grid span {
    display: block;
    color: rgba(255, 250, 244, 0.56);
    text-decoration: none;
    margin: 0.45rem 0;
    font-size: 0.9rem;
}

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

.footer-book {
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.72rem !important;
    margin-top: 1.2rem !important;
}

.footer-bottom {
    max-width: 1240px;
    margin: 2.8rem auto 0;
    padding-top: 1.2rem;
    border-top: 1px solid var(--white-line);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.6px;
}

.footer-bottom a { color: rgba(255, 250, 244, 0.42); text-decoration: none; }
.footer-bottom span,
.footer-bottom a {
    line-height: 1.8;
}
.footer-bottom .footer-credit {
    color: rgba(255, 250, 244, 0.5);
}
.footer-bottom .footer-credit strong {
    color: var(--gold);
    font-weight: 600;
}
.footer-bottom .footer-credit:hover,
.footer-bottom .footer-credit:hover strong {
    color: var(--champagne);
}

.float-whatsapp {
    position: fixed;
    right: 1.4rem;
    bottom: 1.4rem;
    z-index: 990;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #25d366;
    color: #fff;
    font-size: 1.65rem;
    text-decoration: none;
    box-shadow: 0 18px 35px rgba(37, 211, 102, 0.28);
}

.mobile-sticky-cta { display: none; }

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: grid;
    place-items: center;
    padding: 5vw;
    background: rgba(10, 8, 7, 0.94);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img,
.lightbox video {
    max-width: 100%;
    max-height: 88vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: transparent;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
}

.booking-toast {
    position: fixed;
    left: 50%;
    bottom: 1.4rem;
    z-index: 6000;
    width: min(520px, calc(100vw - 2rem));
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.15rem;
    background: var(--black);
    color: #fff;
    box-shadow: 0 18px 45px rgba(23, 18, 14, 0.2);
    transform: translate(-50%, 18px);
    opacity: 0;
    transition: transform 0.28s ease, opacity 0.28s ease;
}

.booking-toast i {
    color: var(--gold);
    font-size: 1.35rem;
    flex: 0 0 auto;
}

.booking-toast--error {
    background: #22100f;
}

.booking-toast--show {
    transform: translate(-50%, 0);
    opacity: 1;
}

/* .reveal visibility is now handled by GSAP animations.js */
.reveal { opacity: 1; transform: none; }
.reveal.visible { opacity: 1; transform: none; }

/* ─── WORD SPLIT ANIMATION ─────────────────────────────────────────────── */
.word-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    line-height: 1.1;
}
.word {
    display: inline-block;
}

.page-hero {
    padding: 170px 5vw 80px;
    min-height: 58vh;
    display: grid;
    align-items: end;
    background:
        linear-gradient(90deg, rgba(23, 18, 14, 0.88), rgba(23, 18, 14, 0.52)),
        var(--black);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--hero-image, url("../images/hero.png")) center/cover;
    opacity: 0.34;
    z-index: 0;
}

.page-hero > * {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.page-hero h1 {
    font-size: clamp(2.8rem, 7vw, 6.4rem);
    text-transform: uppercase;
}

.page-hero p { color: rgba(255, 250, 244, 0.75); font-size: 1.1rem; }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 1180px;
    margin: 0 auto;
}

.feature-card i,
.contact-card i {
    color: var(--gold);
    font-size: 1.8rem;
}

.story-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
}

.story-kicker {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 3rem);
    line-height: 1.15;
}

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

.service-panel {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 1.8rem;
    align-items: center;
}

.service-panel img {
    aspect-ratio: 1;
    width: 100%;
    object-fit: cover;
}

.benefit-list {
    margin-top: 1rem;
    display: grid;
    gap: 0.55rem;
    color: var(--muted);
}

.benefit-list span::before {
    content: "·";
    color: var(--gold);
    margin-right: 0.5rem;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin: 0 auto 2rem;
}

.filter-btn {
    background: transparent;
    color: var(--black);
    cursor: pointer;
}
.filter-btn.active,
.filter-btn:hover {
    background: var(--black);
    color: #fff;
    border-color: var(--black);
}

.portfolio-grid { grid-auto-rows: 260px; }
.portfolio-item[hidden] { display: none; }

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

.course-card img,
.program-card img {
    aspect-ratio: 4 / 3;
    width: 100%;
    object-fit: cover;
    margin-bottom: 1.2rem;
}

.program-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.contact-layout {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 1.4rem;
}

.contact-stack {
    display: grid;
    gap: 1rem;
}

.contact-form {
    background: rgba(255, 250, 244, 0.74);
    border: 1px solid var(--line);
    padding: clamp(1.4rem, 3vw, 2.4rem);
}

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

.field { display: grid; gap: 0.35rem; }
.field.full { grid-column: 1 / -1; }
.field label {
    text-transform: uppercase;
    letter-spacing: 1.7px;
    font-size: 0.68rem;
    color: var(--muted);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid rgba(23, 18, 14, 0.14);
    background: #fff;
    padding: 0.9rem 1rem;
    color: var(--black);
    outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--gold); }

.map-section {
    width: 100%;
    line-height: 0;
}

.map-iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
    filter: grayscale(0.18) contrast(1.04);
}

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

.faq-card h3 { margin-top: 0; }
.faq-card i { font-size: 1.4rem; color: var(--gold); margin-bottom: 0.5rem; display: block; }

/* ─── STARS ──────────────────────────────────────────────────────────────── */
.stars {
    color: var(--gold);
    letter-spacing: 2px;
    font-size: 0.88rem;
    margin-bottom: 0.8rem;
    display: block;
}

/* ─── ACADEMY POINTS ICON ────────────────────────────────────────────────── */
.academy-points span { display: flex; align-items: center; gap: 0.5rem; }
.academy-points span i { font-size: 1rem; color: var(--gold); flex-shrink: 0; }

.service-detail {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    max-width: 1180px;
    margin: 0 auto;
    align-items: center;
}

.service-detail h1 {
    font-size: clamp(2.4rem, 5vw, 5rem);
    text-transform: uppercase;
}

.detail-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    box-shadow: var(--shadow);
}

@media (max-width: 1100px) {
    .service-preview-grid { grid-template-columns: repeat(2, 1fr); }
    .masonry-preview,
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .academy-video-row { grid-template-columns: repeat(3, 1fr) !important; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .service-list-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
    .site-nav { height: 78px; padding: 0 1rem; }
    .brand-mark img { width: 120px; height: 120px; }
    .menu-btn { display: inline-flex; }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.6rem 1rem 1rem;
        background: rgba(255, 250, 244, 0.98);
        border-bottom: 1px solid var(--gold-soft);
        box-shadow: 0 22px 50px rgba(23, 18, 14, 0.1);
    }
    .nav-links.active { display: flex; }
    .nav-links a {
        padding: 0.9rem 0;
        border-bottom: 1px solid var(--line);
        font-size: 0.82rem;
    }
    .nav-links a::after { display: none; }
    .nav-links .nav-cta {
        margin-top: 0.8rem;
        text-align: center;
        background: var(--black);
        color: #fff;
    }
    .nav-links .nav-lang {
        justify-content: center;
        margin-top: 0.7rem;
        background: rgba(255, 255, 255, 0.7);
    }

    .hero {
        min-height: 100svh;
        min-height: 100vh; /* fallback */
        padding: 80px 1.2rem 3.5rem;
        align-items: end;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    .hero-overlay {
        background: linear-gradient(0deg, rgba(23,18,14,0.94) 0%, rgba(23,18,14,0.6) 45%, rgba(23,18,14,0.15) 100%);
    }
    .hero-content {
        padding-bottom: 0;
        max-width: 100%;
    }
    .hero h1 {
        font-size: clamp(2.2rem, 9vw, 3.6rem);
        line-height: 1.08;
        margin-bottom: 0.3rem;
    }
    .hero-script { font-size: clamp(2rem, 8vw, 3rem); margin: 0.2rem 0; }
    /* Hide long paragraph on mobile — saves critical vertical space */
    .hero-copy { display: none; }
    .hero-content .eyebrow {
        font-size: 0.58rem;
        letter-spacing: 1.5px;
        margin-bottom: 0.5rem;
        opacity: 0.8;
    }
    .hero-stat-panel { display: none; }

    /* Buttons: compact side-by-side */
    .hero-content .button-row {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.55rem;
        margin-top: 1.2rem;
    }
    .hero-content .button-row .btn {
        width: auto;
        flex: 1 1 calc(50% - 0.28rem);
        min-width: 0;
        padding: 0.8rem 0.6rem;
        font-size: 0.63rem;
        letter-spacing: 1.4px;
        text-align: center;
        justify-content: center;
    }
    .hero-content .button-row .btn:nth-child(3) {
        flex: 1 1 100%;
    }

    /* Non-hero button rows: wrap naturally, no forced full-width */
    .button-row {
        flex-wrap: wrap;
        gap: 0.7rem;
    }
    .button-row .btn {
        width: auto;
        flex: 1 1 auto;
        min-width: 140px;
        text-align: center;
        justify-content: center;
    }

    .section,
    .academy-band,
    .social-section { padding-inline: 1.1rem; }
    .split-grid,
    .academy-band,
    .social-section,
    .story-grid,
    .contact-layout,
    .service-detail {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }
    .editorial-image { min-height: auto; }
    .editorial-image::before { display: none; }
    .editorial-image img { height: auto; aspect-ratio: 4 / 5; }
    .service-preview-grid,
    .testimonial-grid,
    .feature-grid,
    .course-grid,
    .program-grid,
    .faq-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 390px; }
    .masonry-preview,
    .portfolio-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 330px;
    }
    .academy-video-row {
        grid-template-columns: 1fr !important;
        grid-auto-rows: 280px !important;
    }
    .gallery-tile.tall,
    .gallery-tile.wide {
        grid-row: span 1;
        grid-column: span 1;
    }
    .instagram-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 5.5rem;
    }
    .footer-bottom .footer-credit {
        display: block;
        order: 2;
        margin-top: 0.55rem;
        color: rgba(255, 250, 244, 0.76);
        font-size: 0.72rem;
    }
    .footer-bottom .footer-credit strong {
        color: var(--champagne);
    }
    .service-panel { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .page-hero { padding: 130px 1.2rem 60px; }
    .float-whatsapp { bottom: 5rem; width: 52px; height: 52px; }
    .mobile-sticky-cta {
        position: fixed;
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        z-index: 989;
        display: flex;
        justify-content: center;
        padding: 0.9rem 1rem;
        background: var(--black);
        color: #fff;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 0.72rem;
        box-shadow: 0 16px 35px rgba(23, 18, 14, 0.18);
    }
}

/* ─── MOBILE DEEP FIXES (≤ 480px) ──────────────────────────────────────── */
@media (max-width: 480px) {
    .site-nav { height: 68px; padding: 0 1rem; }
    .brand-mark img { width: 100px; height: 100px; }

    .hero {
        min-height: 100svh;
        padding: 88px 1rem 4.5rem;
    }
    .hero h1 { font-size: clamp(2rem, 10vw, 3rem); line-height: 1.1; }
    .hero-script { font-size: clamp(2rem, 10vw, 3.2rem); }
    .hero-copy { font-size: 0.85rem; }
    .hero-content .eyebrow { font-size: 0.58rem; letter-spacing: 1.5px; }
    /* Keep buttons side-by-side even on small phones */
    .hero-content .button-row .btn { padding: 0.7rem 0.6rem; font-size: 0.62rem; }
    .button-row .btn { min-width: 120px; }

    .page-hero { padding: 110px 1rem 50px; min-height: 50vh; }
    .page-hero h1 { font-size: clamp(2rem, 11vw, 3rem); }

    .section { padding: 3rem 1rem; }
    .section-cream { padding: 3rem 1rem; }
    .section-heading h2 { font-size: clamp(1.7rem, 8vw, 2.4rem); }

    .split-grid,
    .about-preview .split-grid { gap: 1.8rem; }
    .editorial-image { min-height: 280px; }

    .service-preview-grid { grid-template-columns: 1fr; gap: 1rem; }
    .service-card { min-height: 320px; }
    .service-card h3 { font-size: 1.1rem; }

    .masonry-preview,
    .portfolio-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
        gap: 0.7rem;
    }
    .academy-video-row {
        grid-template-columns: 1fr !important;
        grid-auto-rows: 260px !important;
    }
    .gallery-tile.tall,
    .gallery-tile.wide { grid-row: span 1; grid-column: span 1; }

    .testimonial-grid { gap: 1rem; }
    .testimonial-card { padding: 1.6rem 1.2rem; }

    .academy-band { padding: 3rem 1rem; flex-direction: column; gap: 2rem; }
    .academy-cards { grid-template-columns: 1fr; }

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

    .booking-preview { padding: 3rem 1rem; }
    .booking-panel { padding: 2.2rem 1.4rem; }
    .booking-panel h2 { font-size: clamp(1.8rem, 8vw, 2.6rem); }

    .course-grid { grid-template-columns: 1fr; }
    .program-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; gap: 0.8rem; }
    .faq-card { padding: 1.4rem 1.2rem; }

    .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
    .footer-grid > div h3 { margin-top: 0.2rem; }
    .footer-logo { width: 70px; height: 70px; }

    .service-detail { grid-template-columns: 1fr; gap: 2rem; }
    .contact-layout { grid-template-columns: 1fr; }
    .contact-stack { gap: 0.9rem; }
    .contact-card { padding: 1.4rem; }

    .map-iframe { height: 280px; }
    .marquee-strip { padding: 0.9rem 0; }
    .marquee-track span { font-size: 0.72rem; letter-spacing: 1.5px; }

    .float-whatsapp {
        bottom: 4.8rem;
        right: 1rem;
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }
    .mobile-sticky-cta {
        left: 0.7rem;
        right: 0.7rem;
        bottom: 0.7rem;
        font-size: 0.68rem;
        padding: 0.85rem 1rem;
    }

    .feature-grid { grid-template-columns: 1fr; gap: 0.9rem; }
    .feature-card { padding: 1.6rem 1.2rem; }

    .story-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .story-kicker { font-size: 1.1rem; }

    .service-panel { grid-template-columns: 1fr; }
    .service-panel img { height: 220px; }

    /* Lightbox on mobile */
    .lightbox-close { top: 1rem; right: 1rem; width: 42px; height: 42px; }
    #lightboxImage { max-height: 80svh; width: 90vw; object-fit: contain; }

    /* Stars in testimonials */
    .stars { font-size: 0.85rem; }
}

/* ─── SMOOTH SCROLLING & TOUCH PERFORMANCE ──────────────────────────────── */
@media (pointer: coarse) {
    /* Disable heavy hover effects on touch devices */
    .service-card:hover { transform: none; }
    .service-card:hover img { transform: scale(1.04); }
    .gallery-tile:hover img,
    .gallery-tile:hover video { transform: scale(1.03); }
    .academy-cards article:hover { transform: none; box-shadow: none; }
    /* Improve touch scroll */
    html { -webkit-overflow-scrolling: touch; }
    * { -webkit-tap-highlight-color: transparent; }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   GSAP ANIMATION SYSTEM — Custom Cursor · Progress Bar · Enhanced Styles
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── CUSTOM CURSOR ─────────────────────────────────────────────────────── */
body { cursor: none; }

.qob-cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 34px;
    height: 34px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.28s ease, height 0.28s ease, border-color 0.28s ease, background 0.28s ease;
    mix-blend-mode: multiply;
}

.qob-cursor-ring.hovered {
    width: 58px;
    height: 58px;
    background: rgba(197, 161, 91, 0.10);
    border-color: var(--gold);
}

.qob-cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
}

@media (pointer: coarse) {
    body { cursor: auto; }
    .qob-cursor-ring,
    .qob-cursor-dot { display: none; }
}

/* ─── SCROLL PROGRESS BAR ───────────────────────────────────────────────── */
.qob-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), #e8c97a);
    transform-origin: left center;
    transform: scaleX(0);
    z-index: 9998;
    pointer-events: none;
}

/* ─── PERSPECTIVE FOR CARD TILT ─────────────────────────────────────────── */
.service-card {
    transform-style: preserve-3d;
    perspective: 800px;
    will-change: transform;
}

/* ─── MAGNETIC BUTTON — prevent layout shift ────────────────────────────── */
.btn,
.nav-cta,
.footer-book {
    display: inline-flex;
    position: relative;
    will-change: transform;
}

/* ─── FLOATING WHATSAPP — always on top of cursor ───────────────────────── */
.float-whatsapp { z-index: 9990; }

/* ─── HERO CONTENT initial overflow guard ───────────────────────────────── */
.hero-content h1,
.section-heading h2,
.page-hero h1 {
    overflow: visible; /* word-wraps handle clip */
}

/* ─── SERVICE CARD image zoom-in on hover (enhanced) ────────────────────── */
.service-card img {
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}
.service-card:hover img {
    transform: scale(1.07);
}

/* ─── GALLERY TILE image zoom on hover (enhanced) ───────────────────────── */
.gallery-tile img,
.gallery-tile video {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}
.gallery-tile:hover img,
.gallery-tile:hover video {
    transform: scale(1.05);
}

/* ─── NAV LINK underline animation (enhanced) ───────────────────────────── */
.nav-links a {
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}
.nav-links a:hover::after,
.nav-links a[aria-current='page']::after {
    transform: scaleX(1);
    transform-origin: left center;
}

/* ─── TESTIMONIAL 3D depth hint ─────────────────────────────────────────── */
.testimonial-card {
    transform-style: preserve-3d;
    will-change: transform, opacity;
}

/* ─── ACADEMY CARDS – subtle float ──────────────────────────────────────── */
.academy-cards article {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.academy-cards article:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(23, 18, 14, 0.12);
}

/* ─── FOOTER LOGO hover spin ────────────────────────────────────────────── */
.footer-logo {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.footer-logo:hover {
    transform: rotate(8deg) scale(1.06);
}

/* ─── SOCIAL SECTION image hover ────────────────────────────────────────── */
.instagram-grid img {
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: brightness(0.92);
}
.instagram-grid img:hover {
    transform: scale(1.04);
    filter: brightness(1);
}

/* ─── STUDENTS SLIDESHOW ────────────────────────────────────────────────── */
.students-slideshow {
    position: relative;
    max-width: 520px;
    margin: 2.5rem auto 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(23,18,14,0.14);
    background: var(--black);
    aspect-ratio: 3/4;
}
.slideshow-track {
    width: 100%;
    height: 100%;
    position: relative;
}
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}
.slide.active {
    opacity: 1;
    pointer-events: auto;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}
.slide-prev,
.slide-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    transition: background 0.25s;
}
.slide-prev { left: 14px; }
.slide-next { right: 14px; }
.slide-prev:hover,
.slide-next:hover {
    background: rgba(197,161,91,0.55);
}
.slide-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    border: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
    padding: 0;
}
.dot.active {
    background: var(--gold);
    transform: scale(1.3);
}
@media (max-width: 600px) {
    .students-slideshow {
        max-width: 100%;
        aspect-ratio: 3/4;
        border-radius: 0;
    }
}

/* ─── SERVICE PANEL SLIDESHOW ───────────────────────────────────────────── */
.panel-slideshow {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius);
    background: var(--black);
}
.panel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
}
.panel-slide.active { opacity: 1; }
.panel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.panel-slide-prev,
.panel-slide-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    z-index: 10;
    transition: background 0.25s;
}
.panel-slide-prev { left: 12px; }
.panel-slide-next { right: 12px; }
.panel-slide-prev:hover,
.panel-slide-next:hover { background: rgba(197,161,91,0.55); }
.panel-slide-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 10;
}
.panel-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, transform 0.25s;
}
.panel-dot.active {
    background: var(--gold);
    transform: scale(1.35);
}
@media (max-width: 860px) {
    .panel-slideshow {
        width: 100%;
        aspect-ratio: 4 / 3;
        border-radius: var(--radius) var(--radius) 0 0;
    }
}

/* ─── PANEL SLIDESHOW — contain (no crop) ──────────────────────────────── */
.panel-slideshow--contain {
    background: var(--cream);
    aspect-ratio: 1 / 1;
}
.panel-slideshow--contain .panel-slide img {
    object-fit: contain;
    object-position: center center;
    background: var(--cream);
}

/* ─── PORTFOLIO SLIDESHOW TILE ──────────────────────────────────────────── */
.portfolio-slideshow {
    position: relative;
    overflow: hidden;
    cursor: default;
}
.pf-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}
.pf-slide.active { opacity: 1; }
.pf-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pf-prev, .pf-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    z-index: 10;
    transition: background 0.25s;
}
.pf-prev { left: 10px; }
.pf-next { right: 10px; }
.pf-prev:hover, .pf-next:hover { background: rgba(197,161,91,0.55); }

.panel-slideshow--contain .panel-slide video {
    object-fit: contain;
    background: var(--cream);
}

/* Extensions slideshow — taller to show full video */
#extensionsSlide {
    aspect-ratio: 9 / 16;
    width: 100%;
}
@media (min-width: 861px) {
    #extensionsSlide {
        aspect-ratio: 3 / 4;
    }
}

/* Bjonde premium — taller on desktop so photos aren't cropped */
@media (min-width: 861px) {
    .gallery-tile.wide.portfolio-slideshow {
        grid-row: span 2;
    }
}

/* ─── PRODUKTET & INFLUENCERS ───────────────────────────────────────────── */
.produkte-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    max-width: 1100px;
    margin: 2rem auto 0;
}
.produkte-tile {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 9 / 16;
    background: var(--black);
    box-shadow: 0 8px 24px rgba(23,18,14,0.12);
}
.produkte-tile video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 860px) {
    .produkte-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
}
@media (max-width: 540px) {
    .produkte-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
}

/* ─── PRODUKTE TILE — play icon & cursor ────────────────────────────────── */
.produkte-tile {
    cursor: pointer;
}
.produkte-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: rgba(23,18,14,0.25);
}
.produkte-play i {
    font-size: 3rem;
    color: rgba(255,255,255,0.9);
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.produkte-tile:hover .produkte-play {
    opacity: 1;
}
/* Always show subtle play hint on mobile */
@media (pointer: coarse) {
    .produkte-play {
        opacity: 0.6;
        background: transparent;
    }
    .produkte-play i { font-size: 2.2rem; }
}

/* ─── INSTAGRAM REELS GRID ──────────────────────────────────────────────── */
.ig-reels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1240px;
    margin: 2rem auto 0;
    align-items: start;
}
.ig-reels-grid .instagram-media {
    border-radius: 12px !important;
    box-shadow: 0 8px 24px rgba(23,18,14,0.10) !important;
}
@media (max-width: 1100px) {
    .ig-reels-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .ig-reels-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
}

/* ─── BREADCRUMB ────────────────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.9rem 2rem;
  font-size: 0.78rem;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  color: var(--muted);
  max-width: 1200px;
  margin: 0 auto;
}
.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.2s;
}
.breadcrumb a:hover { opacity: 0.75; }
.breadcrumb i { font-size: 0.7rem; opacity: 0.55; }
.breadcrumb span { color: var(--muted); }
