:root {
    --layane-bg: #fff8fb;
    --layane-bg-deep: #201139;
    --layane-text: #24162f;
    --layane-muted: #6d5f75;
    --layane-pink: #ff4fa3;
    --layane-purple: #7b4dff;
    --layane-yellow: #ffd166;
    --layane-cyan: #34d1bf;
    --layane-white: #ffffff;
    --layane-shadow: 0 24px 70px rgba(57, 24, 88, 0.18);
    --layane-radius: 30px;
}

.layane-net-site,
.layane-net-site * {
    box-sizing: border-box;
}

.layane-net-site {
    width: min(100vw, 100%);
    margin: 0 auto;
    color: var(--layane-text);
    background:
        radial-gradient(circle at 15% 8%, rgba(255, 79, 163, 0.20), transparent 30%),
        radial-gradient(circle at 85% 12%, rgba(123, 77, 255, 0.18), transparent 32%),
        linear-gradient(180deg, #fff8fb 0%, #f4fbff 46%, #fff8fb 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow: hidden;
}

.layane-net-site a {
    color: inherit;
    text-decoration: none;
}

.layane-header {
    width: min(1180px, calc(100% - 32px));
    margin: 18px auto 0;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    box-shadow: 0 12px 38px rgba(51, 27, 78, 0.10);
    backdrop-filter: blur(18px);
    position: sticky;
    top: 16px;
    z-index: 20;
}

.layane-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.layane-logo-mark {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--layane-white);
    border-radius: 15px;
    background: linear-gradient(135deg, var(--layane-pink), var(--layane-purple));
    box-shadow: 0 10px 28px rgba(255, 79, 163, 0.28);
}


.layane-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    padding: 9px 14px;
    border: 0;
    border-radius: 999px;
    color: var(--layane-white);
    background: linear-gradient(135deg, var(--layane-bg-deep), #3a2b55);
    box-shadow: 0 14px 34px rgba(32, 17, 57, 0.18);
    font: inherit;
    font-weight: 850;
    cursor: pointer;
}

.layane-menu-toggle:focus-visible {
    outline: 3px solid rgba(255, 79, 163, 0.30);
    outline-offset: 3px;
}

.layane-menu-lines {
    display: inline-grid;
    gap: 4px;
}

.layane-menu-lines i {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.layane-header.is-menu-open .layane-menu-lines i:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.layane-header.is-menu-open .layane-menu-lines i:nth-child(2) {
    opacity: 0;
}

.layane-header.is-menu-open .layane-menu-lines i:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.layane-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.layane-nav a {
    padding: 10px 13px;
    border-radius: 999px;
    color: var(--layane-muted);
    font-size: 0.95rem;
    font-weight: 750;
}

.layane-nav a:hover,
.layane-nav a:focus-visible {
    color: var(--layane-text);
    background: rgba(255, 79, 163, 0.10);
    outline: none;
}

.layane-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 76px auto 44px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
    gap: 42px;
}

.layane-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    color: var(--layane-purple);
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.layane-kicker::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--layane-pink);
    box-shadow: 18px 0 0 var(--layane-yellow), 36px 0 0 var(--layane-cyan);
}

.layane-hero h1 {
    margin: 0;
    font-size: clamp(3rem, 7vw, 6.8rem);
    line-height: 0.92;
    letter-spacing: -0.08em;
    max-width: 850px;
}

.layane-hero-text {
    margin: 26px 0 0;
    max-width: 630px;
    color: var(--layane-muted);
    font-size: clamp(1.08rem, 2vw, 1.35rem);
    line-height: 1.65;
}

.layane-hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.layane-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    color: var(--layane-white) !important;
    background: linear-gradient(135deg, var(--layane-pink), var(--layane-purple));
    border-radius: 999px;
    box-shadow: 0 16px 34px rgba(123, 77, 255, 0.24);
    font-weight: 900;
}

.layane-button:hover,
.layane-button:focus-visible {
    transform: translateY(-2px);
    outline: none;
}

.layane-button-secondary {
    color: var(--layane-text) !important;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: inset 0 0 0 1px rgba(36, 22, 47, 0.08), 0 12px 26px rgba(36, 22, 47, 0.07);
}

.layane-hero-card {
    min-height: 560px;
    position: relative;
    display: grid;
    place-items: center;
    border-radius: 46px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.38)),
        radial-gradient(circle at 50% 35%, rgba(255, 209, 102, 0.52), transparent 34%),
        linear-gradient(145deg, rgba(255, 79, 163, 0.18), rgba(52, 209, 191, 0.20));
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: var(--layane-shadow);
    overflow: hidden;
}

.layane-rope-orbit {
    position: absolute;
    width: 66%;
    aspect-ratio: 1 / 1.65;
    border: 9px solid rgba(255, 79, 163, 0.84);
    border-radius: 50%;
    transform: rotate(26deg);
    animation: layaneFloat 7s ease-in-out infinite;
}

.layane-rope-two {
    border-color: rgba(123, 77, 255, 0.8);
    transform: rotate(-26deg);
    animation-delay: -2s;
}

.layane-score-card {
    position: absolute;
    bottom: 38px;
    left: 34px;
    padding: 18px 20px;
    width: 205px;
    color: var(--layane-white);
    background: rgba(32, 17, 57, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 26px;
    box-shadow: 0 20px 42px rgba(32, 17, 57, 0.26);
}

.layane-score-card span,
.layane-score-card strong {
    display: block;
}

.layane-score-card span {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 800;
}

.layane-score-card strong {
    margin-top: 5px;
    font-size: 2.1rem;
    letter-spacing: -0.05em;
}

.layane-jump-icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 180px;
    height: 180px;
    border-radius: 54px;
    color: var(--layane-white);
    background: linear-gradient(135deg, var(--layane-pink), var(--layane-purple));
    box-shadow: 0 30px 70px rgba(123, 77, 255, 0.34);
    font-size: 5rem;
    animation: layanePulse 4s ease-in-out infinite;
}

.layane-panel,
.layane-video-empty,
.layane-video-card,
.layane-privacy-note {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 52px rgba(36, 22, 47, 0.09);
    backdrop-filter: blur(16px);
}

.layane-panel p,
.layane-section-heading p,
.layane-video-empty p,
.layane-timeline p,
.layane-privacy-note p {
    color: var(--layane-muted);
    line-height: 1.65;
}

.layane-section {
    width: min(1180px, calc(100% - 32px));
    margin: 110px auto 0;
}

.layane-section-heading {
    max-width: 780px;
    margin-bottom: 30px;
}

.layane-section-heading h2 {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 4.4rem);
    line-height: 0.98;
    letter-spacing: -0.07em;
}

.layane-section-heading p:last-child {
    margin-top: 18px;
    font-size: 1.08rem;
}

.layane-bio-grid,
.layane-history-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
    gap: 22px;
}

.layane-panel {
    padding: clamp(24px, 4vw, 42px);
    border-radius: var(--layane-radius);
}

.layane-panel h3 {
    margin: 0 0 14px;
    font-size: 1.55rem;
    letter-spacing: -0.05em;
}

.layane-panel p:first-child {
    margin-top: 0;
}

.layane-panel p:last-child {
    margin-bottom: 0;
}

.layane-values-panel {
    background: linear-gradient(135deg, rgba(255, 79, 163, 0.12), rgba(255, 255, 255, 0.82));
}

.layane-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.layane-tags span {
    display: inline-flex;
    padding: 9px 12px;
    border-radius: 999px;
    color: var(--layane-bg-deep);
    background: rgba(255, 209, 102, 0.46);
    font-weight: 850;
}

.layane-team {
    margin-top: 34px;
}

.layane-team-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 26px;
    align-items: center;
    padding: clamp(26px, 4vw, 44px);
    border-radius: 34px;
    color: #f6f3f8;
    background: linear-gradient(135deg, #303034, #1f1f23);
    box-shadow: 0 24px 70px rgba(22, 22, 26, 0.22);
}

.layane-team-card .layane-kicker {
    color: rgba(255, 255, 255, 0.62);
}

.layane-team-card h2 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4vw, 3.7rem);
    line-height: 1;
    letter-spacing: -0.07em;
}

.layane-team-card p {
    margin: 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.68;
    font-size: 1.05rem;
}

.layane-team-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.layane-team-links a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 14px;
    border-radius: 999px;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-weight: 850;
    text-decoration: none !important;
}

.layane-team-links span {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    color: #303034;
    background: #ffffff;
    font-size: 0.78rem;
    font-weight: 950;
}

.layane-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.layane-gallery-item,
.layane-gallery-placeholder {
    margin: 0;
    min-height: 285px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 48px rgba(36, 22, 47, 0.12);
}

.layane-gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 285px;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.layane-gallery-item:hover img {
    transform: scale(1.04);
}

.layane-lightbox-trigger {
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    cursor: zoom-in;
    background: transparent;
}

.layane-gallery-item figcaption,
.layane-gallery-placeholder figcaption {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 12px 14px;
    color: var(--layane-white);
    background: rgba(32, 17, 57, 0.74);
    border-radius: 18px;
    font-weight: 900;
}

.layane-gallery-placeholder {
    display: grid;
    place-items: center;
    padding: 28px;
    color: var(--layane-white);
    background: linear-gradient(135deg, var(--layane-pink), var(--layane-purple));
}

.layane-gallery-placeholder span {
    font-size: 5rem;
    filter: drop-shadow(0 14px 26px rgba(32, 17, 57, 0.2));
}

.layane-gallery-placeholder-2,
.layane-gallery-placeholder-5 {
    background: linear-gradient(135deg, var(--layane-cyan), var(--layane-purple));
}

.layane-gallery-placeholder-3,
.layane-gallery-placeholder-6 {
    background: linear-gradient(135deg, var(--layane-yellow), var(--layane-pink));
}

.layane-video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.layane-video-card,
.layane-video-empty {
    border-radius: var(--layane-radius);
    overflow: hidden;
}

.layane-video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--layane-bg-deep);
}

.layane-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.layane-video-card h3 {
    margin: 0;
    padding: 20px 22px 24px;
    font-size: 1.25rem;
    letter-spacing: -0.04em;
}

.layane-video-empty {
    min-height: 300px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        radial-gradient(circle at 25% 20%, rgba(255, 209, 102, 0.58), transparent 26%),
        linear-gradient(135deg, rgba(255, 79, 163, 0.20), rgba(123, 77, 255, 0.12)),
        rgba(255, 255, 255, 0.78);
}

.layane-video-empty span {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    margin-bottom: 26px;
    color: var(--layane-white);
    background: var(--layane-bg-deep);
    border-radius: 24px;
    font-size: 1.6rem;
}

.layane-video-empty h3 {
    margin: 0 0 8px;
    font-size: 1.5rem;
    letter-spacing: -0.05em;
}

.layane-video-empty p {
    margin: 0;
}

.layane-history-text {
    background: rgba(32, 17, 57, 0.92);
    color: var(--layane-white);
}

.layane-history-text p {
    color: rgba(255, 255, 255, 0.82);
}

.layane-timeline {
    display: grid;
    gap: 14px;
}

.layane-timeline div {
    padding: 24px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 16px 42px rgba(36, 22, 47, 0.07);
}

.layane-timeline span {
    color: var(--layane-purple);
    font-size: 0.82rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.layane-timeline p {
    margin: 10px 0 0;
}

.layane-privacy-note {
    width: min(1180px, calc(100% - 32px));
    margin: 90px auto 0;
    padding: 26px 30px;
    border-radius: 28px;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 20px;
    align-items: center;
}

.layane-privacy-note strong {
    font-size: 1.2rem;
    letter-spacing: -0.04em;
}

.layane-privacy-note p {
    margin: 0;
}

.layane-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    place-items: center;
    padding: 28px;
    background: rgba(21, 11, 35, 0.88);
}

.layane-lightbox.is-open {
    display: grid;
}

.layane-lightbox img {
    max-width: min(1100px, 94vw);
    max-height: 78vh;
    border-radius: 24px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.layane-lightbox p {
    margin: 16px 0 0;
    color: var(--layane-white);
    font-weight: 850;
    text-align: center;
}

.layane-lightbox-close {
    position: fixed;
    top: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    color: var(--layane-text);
    background: var(--layane-white);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

@keyframes layaneFloat {
    0%, 100% { transform: translateY(0) rotate(26deg); }
    50% { transform: translateY(-14px) rotate(31deg); }
}

@keyframes layanePulse {
    0%, 100% { transform: scale(1) rotate(-4deg); }
    50% { transform: scale(1.05) rotate(4deg); }
}

@media (max-width: 980px) {
    .layane-hero,
    .layane-bio-grid,
    .layane-team-card,
    .layane-history-layout,
    .layane-privacy-note {
        grid-template-columns: 1fr;
    }

    .layane-hero {
        margin-top: 48px;
    }

    .layane-hero-card {
        min-height: 430px;
    }

    .layane-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 720px) {
    .layane-header {
        align-items: flex-start;
        border-radius: 28px;
        flex-direction: column;
    }

    .layane-nav {
        justify-content: flex-start;
    }

    .layane-hero h1 {
        font-size: clamp(2.8rem, 16vw, 4.5rem);
    }

    .layane-gallery-grid,
    .layane-video-grid {
        grid-template-columns: 1fr;
    }

    .layane-section {
        margin-top: 76px;
    }
}

body.layane-net-standalone-page {
    margin: 0;
    background: var(--layane-bg);
}

body.layane-net-standalone-page .layane-net-site {
    min-height: 100vh;
    padding-bottom: 90px;
}

.layane-hero-card.has-hero-image {
    background: var(--layane-bg-deep);
}

.layane-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    z-index: 0;
}

.layane-hero-image-shine {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 209, 102, 0.30), transparent 28%),
        linear-gradient(180deg, rgba(32, 17, 57, 0.05), rgba(32, 17, 57, 0.42));
    pointer-events: none;
}

.layane-hero-card.has-hero-image .layane-rope-orbit {
    z-index: 2;
    border-color: rgba(255, 255, 255, 0.58);
    mix-blend-mode: screen;
}

.layane-hero-card.has-hero-image .layane-rope-two {
    border-color: rgba(255, 209, 102, 0.72);
}

.layane-hero-card .layane-score-card,
.layane-hero-card .layane-jump-icon {
    z-index: 3;
}

/* Version 1.0.3 additions: social links, events, popup, richer media cards and protection logos. */
.layane-hero-socials,
.layane-social-section div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.layane-hero-socials {
    margin-top: 24px;
}

.layane-hero-socials a,
.layane-social-section a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    color: var(--layane-text);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: inset 0 0 0 1px rgba(36, 22, 47, 0.08), 0 10px 22px rgba(36, 22, 47, 0.06);
    font-weight: 850;
}

.layane-hero-socials a span,
.layane-social-section a span {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    color: var(--layane-white);
    background: var(--layane-bg-deep);
    font-size: 0.76rem;
    font-weight: 950;
}

.layane-gallery-item figcaption strong,
.layane-gallery-item figcaption span,
.layane-gallery-placeholder figcaption strong {
    display: block;
}

.layane-gallery-item figcaption span {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    font-weight: 650;
    line-height: 1.35;
}

.layane-gallery-text-card {
    min-height: 285px;
    padding: 28px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 20px 48px rgba(36, 22, 47, 0.10);
}

.layane-gallery-text-card h3,
.layane-event-card h3,
.layane-protection-card h3,
.layane-video-content h3 {
    margin: 0 0 10px;
    letter-spacing: -0.05em;
}

.layane-gallery-text-card p,
.layane-video-content p,
.layane-event-content p,
.layane-protection-card p {
    color: var(--layane-muted);
    line-height: 1.65;
}

.layane-video-frame video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.layane-video-cover {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    background: var(--layane-bg-deep);
    overflow: hidden;
}

.layane-video-cover img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.layane-video-cover:hover img {
    transform: scale(1.04);
}

.layane-video-cover span {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    width: 70px;
    height: 70px;
    border-radius: 999px;
    color: var(--layane-white);
    background: rgba(32, 17, 57, 0.84);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
    font-size: 1.5rem;
}

.layane-video-content {
    padding: 22px;
}

.layane-video-content h3 {
    font-size: 1.25rem;
}

.layane-video-content p:last-child,
.layane-event-content p:last-child,
.layane-protection-card p:last-child {
    margin-bottom: 0;
}

.layane-text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 8px;
    color: var(--layane-purple) !important;
    font-weight: 900;
}

.layane-text-link::after {
    content: "→";
}

.layane-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.layane-event-card {
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.80);
    box-shadow: 0 20px 52px rgba(36, 22, 47, 0.10);
}

.layane-event-card img {
    width: 100%;
    height: 230px;
    display: block;
    object-fit: cover;
}

.layane-event-content {
    padding: 24px;
}

.layane-event-content span {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--layane-white);
    background: var(--layane-bg-deep);
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.layane-event-card.has-no-event-image {
    background:
        radial-gradient(circle at 20% 10%, rgba(255, 209, 102, 0.35), transparent 30%),
        linear-gradient(135deg, rgba(255, 79, 163, 0.13), rgba(123, 77, 255, 0.10)),
        rgba(255, 255, 255, 0.85);
}

.layane-protection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.layane-protection-card {
    padding: 26px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 48px rgba(36, 22, 47, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.90);
}

.layane-protection-logo {
    display: grid;
    place-items: center;
    width: 66px;
    height: 66px;
    margin-bottom: 18px;
    color: var(--layane-protection-logo-color, #3a3a3a);
    background: rgba(58, 58, 58, 0.08);
    border: 1px solid rgba(58, 58, 58, 0.12);
    border-radius: 22px;
}

.layane-protection-svg {
    width: 34px;
    height: 34px;
    display: block;
}

.layane-protection-card h3 {
    font-size: 1.18rem;
}

.layane-social-section {
    width: min(1180px, calc(100% - 32px));
    margin: 90px auto 0;
    padding: 28px;
    border-radius: 30px;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 48px rgba(36, 22, 47, 0.08);
}

.layane-social-section strong {
    font-size: 1.25rem;
    letter-spacing: -0.04em;
}

.layane-popup {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none;
    place-items: center;
    padding: 24px;
    background: rgba(21, 11, 35, 0.72);
    backdrop-filter: blur(10px);
}

.layane-popup.is-open {
    display: grid;
}

.layane-popup-card {
    position: relative;
    width: min(760px, 92vw);
    border-radius: 30px;
    overflow: hidden;
    background: var(--layane-white);
    box-shadow: 0 34px 100px rgba(0, 0, 0, 0.35);
}

.layane-popup-card img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 82vh;
    object-fit: contain;
}

.layane-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    color: var(--layane-text);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 980px) {
    .layane-events-grid,
    .layane-protection-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .layane-social-section {
        align-items: flex-start;
        flex-direction: column;
    }

    .layane-team-links {
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .layane-events-grid,
    .layane-protection-grid {
        grid-template-columns: 1fr;
    }
}

.layane-video-content h3 {
    padding: 0;
}

/* Version 1.0.5 additions: team block, awards, last dark logo wall and simplified dark protection strip. */
.layane-awards-grid,
.layane-logos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.layane-award-card,
.layane-logo-card {
    padding: 28px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 52px rgba(36, 22, 47, 0.09);
    backdrop-filter: blur(14px);
}

.layane-award-icon {
    display: grid;
    place-items: center;
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    color: #3a3a3a;
    background: rgba(58, 58, 58, 0.08);
    border: 1px solid rgba(58, 58, 58, 0.12);
    border-radius: 24px;
}

.layane-icon-svg {
    width: 34px;
    height: 34px;
    display: block;
}

.layane-award-card h3,
.layane-logo-card h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
    letter-spacing: -0.05em;
}

.layane-award-card p,
.layane-logo-card p {
    margin: 0;
    color: var(--layane-muted);
    line-height: 1.65;
}

.layane-logos {
    margin-top: 90px;
    margin-bottom: 70px;
}

.layane-logo-card {
    padding: 0;
    overflow: hidden;
    text-align: center;
}

.layane-logo-link {
    display: grid;
    place-items: center;
    min-height: 170px;
    padding: 32px;
    border-radius: 30px;
    background: rgba(58, 58, 58, 0.06);
    border: 1px solid rgba(58, 58, 58, 0.10);
    text-decoration: none !important;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.layane-logo-link:hover {
    transform: translateY(-2px);
    background: rgba(58, 58, 58, 0.09);
    border-color: rgba(58, 58, 58, 0.18);
}

.layane-logo-link img {
    display: block;
    max-width: 100%;
    max-height: 108px;
    object-fit: contain;
    filter: grayscale(1) saturate(0) brightness(0.28) contrast(1.12);
    opacity: 0.96;
}

.layane-protection-strip {
    width: min(1180px, calc(100% - 32px));
    margin: 90px auto 0;
    padding: 28px 32px;
    border-radius: 28px;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    color: #ffffff;
    background: #303034;
    box-shadow: 0 22px 62px rgba(22, 22, 26, 0.24);
}

.layane-protection-strip strong {
    color: #ffffff;
    font-size: 1.02rem;
    font-weight: 850;
    letter-spacing: -0.02em;
}

.layane-protection-strip p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: clamp(1rem, 2vw, 1.28rem);
    line-height: 1.55;
}

@media (max-width: 980px) {
    .layane-awards-grid,
    .layane-logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .layane-protection-strip {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .layane-awards-grid,
    .layane-logos-grid {
        grid-template-columns: 1fr;
    }

    .layane-protection-strip {
        padding: 24px;
    }
}


/* Mobile menu polish */
@media (max-width: 820px) {
    .layane-header {
        width: min(100% - 22px, 1180px);
        margin-top: 11px;
        padding: 11px;
        border-radius: 26px;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        top: 10px;
    }

    .layane-logo {
        min-width: 0;
        flex: 1 1 auto;
    }

    .layane-logo > span:last-child {
        max-width: 48vw;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .layane-logo-mark {
        width: 38px;
        height: 38px;
        border-radius: 14px;
    }

    .layane-menu-toggle {
        display: inline-flex;
        flex: 0 0 auto;
    }

    .layane-nav {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        justify-content: stretch;
        align-items: stretch;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        padding-top: 0;
        pointer-events: none;
        transform: translateY(-4px);
        transition: max-height 260ms ease, opacity 180ms ease, padding 180ms ease, transform 180ms ease;
    }

    .layane-header.is-menu-open .layane-nav {
        max-height: 720px;
        opacity: 1;
        padding-top: 10px;
        pointer-events: auto;
        transform: translateY(0);
    }

    .layane-nav a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 15px;
        border-radius: 18px;
        color: var(--layane-text);
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(32, 17, 57, 0.08);
        box-shadow: 0 8px 22px rgba(32, 17, 57, 0.055);
        font-size: 0.98rem;
    }

    .layane-nav a::after {
        content: "›";
        color: rgba(36, 22, 47, 0.40);
        font-size: 1.3rem;
        line-height: 1;
    }

    .layane-nav a:hover,
    .layane-nav a:focus-visible {
        color: var(--layane-white);
        background: linear-gradient(135deg, var(--layane-pink), var(--layane-purple));
        border-color: transparent;
    }

    .layane-nav a:hover::after,
    .layane-nav a:focus-visible::after {
        color: rgba(255, 255, 255, 0.75);
    }
}

@media (max-width: 430px) {
    .layane-menu-label {
        display: none;
    }

    .layane-menu-toggle {
        width: 44px;
        padding-inline: 0;
    }
}

/* Version 1.0.8 refinements: updated contact title, top email visibility and footer credit padding. */
.layane-gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.layane-gallery-item,
.layane-gallery-placeholder {
    min-height: 220px;
    aspect-ratio: 4 / 3;
    border-radius: 24px;
}

.layane-gallery-item img {
    min-height: 0;
    height: 100%;
    object-fit: cover;
}

.layane-gallery-text-card {
    min-height: 220px;
    border-radius: 24px;
    padding: 24px;
}

.layane-credit {
    width: min(1180px, calc(100% - 32px));
    margin: 36px auto 0;
    padding: 18px 20px 0;
    text-align: center;
    color: rgba(36, 22, 47, 0.58);
    font-size: 0.92rem;
    font-weight: 700;
}

.layane-credit a {
    color: #303034 !important;
    font-weight: 950;
    text-decoration: none !important;
}

.layane-credit a:hover,
.layane-credit a:focus-visible {
    text-decoration: underline !important;
    outline: none;
}

@media (max-width: 720px) {
    .layane-section,
    .layane-social-section,
    .layane-protection-strip,
    .layane-credit {
        width: calc(100% - 24px);
    }

    .layane-gallery-grid,
    .layane-video-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .layane-gallery-item,
    .layane-gallery-placeholder {
        min-height: 0;
        aspect-ratio: 4 / 3;
        border-radius: 22px;
    }

    .layane-gallery-item img,
    .layane-video-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .layane-gallery-item figcaption,
    .layane-gallery-placeholder figcaption {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 10px 12px;
        border-radius: 16px;
    }

    .layane-gallery-item figcaption span {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .layane-video-card,
    .layane-video-empty {
        border-radius: 22px;
    }

    .layane-video-frame,
    .layane-video-cover {
        aspect-ratio: 16 / 9;
        min-height: 0;
    }

    .layane-video-frame iframe,
    .layane-video-frame video {
        width: 100%;
        height: 100%;
    }

    .layane-video-content {
        padding: 16px;
    }

    .layane-video-content h3 {
        font-size: 1.08rem;
    }

    .layane-video-empty {
        min-height: 220px;
        padding: 24px;
    }

    .layane-hero-card {
        min-height: 360px;
        border-radius: 30px;
    }

    .layane-hero-image {
        object-fit: cover;
        object-position: center;
    }

    .layane-popup-card {
        width: min(92vw, 560px);
        border-radius: 24px;
    }

    .layane-lightbox img {
        max-width: 92vw;
        max-height: 70vh;
        border-radius: 20px;
        object-fit: contain;
    }
}

@media (max-width: 430px) {
    .layane-hero-card {
        min-height: 310px;
    }

    .layane-gallery-item,
    .layane-gallery-placeholder {
        aspect-ratio: 1 / 1;
    }

    .layane-video-content p {
        font-size: 0.95rem;
    }

    .layane-credit {
        padding-bottom: 0;
        font-size: 0.84rem;
    }
}
