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

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f6efe8;
    color: #2f241d;
    line-height: 1.6;
}

.container {
    width: min(90%, 1150px);
    max-width: 1150px;
    margin: auto;
}

section {
    padding: 80px 0;
}

h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 35px;
    color: #3b2d24;
}

/* HEADER */
header {
    background: #fffaf5;
    padding: 22px 0;
    border-bottom: 1px solid #ead8c8;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #7a5c45;
}

.logo img {
    height: clamp(70px, 7vw, 120px);
    width: auto;
    display: block;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.25));
}

nav a {
    color: #3b2d24;
    text-decoration: none;
    margin-left: 24px;
    font-weight: 600;
}

nav a:hover {
    color: #9b6b43;
}

.nsv-live-badge {
    position: fixed;
    right: 24px;
    bottom: 24px;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 8px 12px;

    background: rgba(8, 18, 35, 0.30);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 14px;

    color: #fff;

    z-index: 9999;
}

.nsv-live-badge__shield {
    width: 38px !important;
    height: 44px !important;
    object-fit: contain;
    flex: 0 0 auto;
}

.nsv-live-badge__content {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.nsv-live-badge__content strong {
    font-size: 13px;
    font-weight: 700;
}

.nsv-live-badge__status {
    margin-top: 2px;

    font-size: 11px;
    font-weight: 600;
}

.nsv-live-badge__time {
    margin-top: 2px;

    font-size: 10px;

    color: rgba(255,255,255,0.60);
}

.nsv-live-badge.is-verified .nsv-live-badge__status {
    color: #d7ad55;
}

.nsv-live-badge.is-attention .nsv-live-badge__status {
    color: #ff5b5b;
}

@media (max-width: 600px) {

    .nsv-live-badge {
        right: 12px;
        bottom: 12px;

        padding: 7px 10px;
    }

    .nsv-live-badge__shield {
        width: 32px !important;
        height: 38px !important;
    }
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #f6efe8, #fffaf5);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 55px;
    align-items: center;
}

.experience-line {
    color: #9b6b43;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 18px;
}

.label {
    color: #9b6b43;
    font-weight: bold;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: 54px;
    line-height: 1.12;
    margin-bottom: 25px;
    color: #2f241d;
}

.hero p {
    font-size: 20px;
    color: #5b4a3d;
    margin-bottom: 32px;
}

.hero-photo {
    background: #e8d6c5;
    border-radius: 28px;
    overflow: hidden;
    min-height: 460px;
    box-shadow: 0 25px 55px rgba(72, 52, 38, 0.16);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-photo img {
    display: block;
    width: auto;
    max-width: 85%;
    max-height: 420px;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
}

.hero-subtitle {
    font-size: clamp(19px, 2.5vw, 26px);
}

.hero-description {
    font-size: clamp(16px, 2vw, 20px);
}

/* EDUCATION */
#education {
    background: #fffaf5;
}

.education-box {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    background: #efe1d3;
    padding: 40px;
    border-radius: 24px;
}

.education-box p {
    margin-bottom: 15px;
    font-size: 18px;
    color: #5b4a3d;
}

/* BUTTON */
.button {
    display: inline-block;
    background: #8a6a4f;
    color: white;
    padding: 15px 34px;
    border-radius: 999px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.button:hover {
    background: #6f543e;
}

/* ABOUT */
#about {
    background: #fffaf5;
}

.about-box {
    max-width: 820px;
    text-align: center;
}

.about-box p {
    font-size: 20px;
    color: #5b4a3d;
    margin-bottom: 18px;
}

/* NAIL PRACTICE */
#nail-practice {
    padding: 100px 0;
    background: #faf6f1;
}

.practice-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(35px, 6vw, 70px);
    align-items: center;
}

.practice-photo {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.14);
}

.practice-photo img {
    width: 100%;
    height: clamp(520px, 60vw, 720px);
    object-fit: cover;
    object-position: center 65%;
    display: block;
}

.section-label {
    display: inline-block;
    color: #9b6b43;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 700;
}

.practice-content {
    max-width: 620px;
}

.practice-content h2 {
    text-align: left;
    font-size: clamp(34px, 4.5vw, 52px);
    line-height: 1.15;
    margin: 18px 0 26px;
}

.practice-content .lead {
    font-size: clamp(20px, 2vw, 24px);
    font-weight: 700;
    color: #3b2d24;
    margin-bottom: 16px;
}

.practice-content p {
    color: #5b4a3d;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.practice-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.practice-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #5b4a3d;
    font-size: 18px;
}

.practice-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #9b6b43;
    font-weight: 700;
}

/* PRACTICE GALLERY */
.practice-gallery {
    padding: 0;
    background: #f6efe8;
}

.gallery-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(47, 36, 29, 0.14);
}

.gallery-card {
    position: relative;
    min-height: 250px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
}

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

.gallery-card-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(35, 25, 18, 0.82) 0%,
            rgba(35, 25, 18, 0.28) 65%,
            rgba(35, 25, 18, 0.08) 100%
        );
}

.gallery-card-content {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 24px;
    z-index: 2;
}

.gallery-card-content h3 {
    font-size: 27px;
    margin-bottom: 8px;
    color: #fff;
}

.gallery-card-content p {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.gallery-card:hover img {
    transform: scale(1.06);
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.card {
    background: #fffaf5;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 16px 35px rgba(72, 52, 38, 0.08);
    border: 1px solid #ead8c8;
}

.card h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #7a5c45;
}

.card p {
    color: #5b4a3d;
}

/* VIDEO */
#video {
    background: #efe1d3;
}

.section-text {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 30px;
    color: #5b4a3d;
    font-size: 18px;
}

.video-placeholder {
    max-width: 760px;
    height: 420px;
    margin: auto;
    background: #d8c2ad;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6f543e;
    font-size: 22px;
    box-shadow: inset 0 0 40px rgba(72, 52, 38, 0.12);
}

.video-box {
    max-width: 400px;
    margin: auto;
}

.video-box video {
    width: 100%;
    display: block;
}

/* CONTACT */
#contact {
    background: #fffaf5;
}

.contact-box {
    text-align: center;
}

.contact-box > p {
    color: #5b4a3d;
    margin-bottom: 30px;
}

.contact-form {
    max-width: 620px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    padding: 16px;
    border: 1px solid #d8c2ad;
    border-radius: 16px;
    font-size: 16px;
    background: white;
}

.contact-form textarea {
    min-height: 130px;
    resize: vertical;
}

.private-contact {
    padding: clamp(70px, 9vw, 120px) 0;
    background: #fffaf5;
}

.private-contact-box {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(40px, 7vw, 90px);
    align-items: start;
}

.contact-intro h2 {
    text-align: left;
    font-size: clamp(36px, 4.5vw, 54px);
    line-height: 1.15;
    margin: 18px 0 25px;
}

.contact-intro p {
    max-width: 520px;
    margin-bottom: 16px;
    color: #5b4a3d;
    font-size: 18px;
    line-height: 1.75;
}

.private-form {
    padding: clamp(25px, 4vw, 42px);
    background: #f6efe8;
    border: 1px solid #ead8c8;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(72, 52, 38, 0.10);
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #3b2d24;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 17px;
    border: 1px solid #d8c2ad;
    border-radius: 15px;
    background: #fff;
    color: #2f241d;
    font: inherit;
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #9b6b43;
    box-shadow: 0 0 0 4px rgba(155, 107, 67, 0.12);
}

.form-group small {
    display: block;
    margin-top: 8px;
    color: #786456;
    line-height: 1.5;
}

.privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 8px 0 26px;
    color: #5b4a3d;
    line-height: 1.5;
    cursor: pointer;
}

.privacy-check input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex: 0 0 auto;
    accent-color: #8a6a4f;
}

.private-form .button {
    width: 100%;
    font-size: 17px;
}

.form-trap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* FORMATS */
#formats {
    background: #fffaf5;
}

.language-box {
    max-width: 720px;
    margin: 45px auto 0;
    padding: 30px;
    text-align: center;
    background: #efe1d3;
    border-radius: 24px;
    border: 1px solid #d8c2ad;
}

.language-box h3 {
    color: #7a5c45;
    margin-bottom: 12px;
    font-size: 24px;
}

.language-box p {
    color: #5b4a3d;
    font-size: 18px;
    margin-bottom: 8px;
}

/* VIDEO HERO */
.video-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.video-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    background: url("img/lake-hero.jpg") center / cover no-repeat;
}

.video-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(47, 36, 29, 0.72) 0%,
            rgba(47, 36, 29, 0.45) 45%,
            rgba(47, 36, 29, 0.18) 100%
        );
    z-index: 2;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 32px 0;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 4;
}

.site-header .logo {
    color: #ffffff;
}

.site-header nav a {
    color: #ffffff;
}

.site-header nav a:hover {
    color: #e8d6c5;
}

.video-hero-content {
    position: relative;
    z-index: 3;
    max-width: min(90%, 720px);
    padding-top: 90px;
}

.video-hero-content .label {
    color: #e8d6c5;
}

.video-hero-content h1 {
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.08;
    margin-bottom: 24px;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 24px;
    line-height: 1.5;
    max-width: 650px;
    margin-bottom: 18px;
    color: #fffaf5;
}

.hero-description {
    font-size: 19px;
    line-height: 1.7;
    max-width: 650px;
    margin-bottom: 34px;
    color: #f6efe8;
}

.video-hero .button {
    background: #fffaf5;
    color: #3b2d24;
}

.video-hero .button:hover {
    background: #e8d6c5;
}

/* FOOTER */
footer {
    background: #3b2d24;
    color: #f6efe8;
    text-align: center;
    padding: 32px 20px;
}

/* TABLET */
@media (max-width: 992px) {
    .gallery-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-card {
        min-height: 280px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .private-contact-box {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .contact-intro,
    .contact-intro h2 {
        text-align: center;
    }

    .contact-intro p {
        margin-left: auto;
        margin-right: auto;
    }

    .private-form {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .video-hero {
        min-height: 100vh;
        align-items: center;
        text-align: center;
    }

    .video-hero-overlay {
        background: rgba(47, 36, 29, 0.58);
    }

    .site-header {
        padding: 20px 0;
    }

    .site-header .header-content {
        flex-direction: column;
        gap: 14px;
    }

    .site-header nav a {
        margin: 0 7px;
        font-size: 14px;
    }

    .video-hero-content {
        padding-top: 130px;
        max-width: 100%;
    }

    .video-hero-content h1 {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-description {
        font-size: 17px;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    nav a {
        margin: 0 8px;
        font-size: 15px;
    }

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

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

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

    .video-placeholder {
        height: 260px;
    }

    #nail-practice {
        padding: 70px 0;
    }

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

    .practice-photo img {
        height: auto;
        max-height: none;
    }

    .practice-content,
    .practice-content h2 {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .practice-gallery {
        padding: 0 0 60px;
    }

    .gallery-cards {
        grid-template-columns: 1fr;
        gap: 14px;
        overflow: visible;
        box-shadow: none;
        border-radius: 0;
    }

    .gallery-card {
        min-height: 220px;
        border-radius: 22px;
    }

    .gallery-card-content {
        left: 22px;
        right: 22px;
        bottom: 20px;
    }

    .gallery-card-content h3 {
        font-size: 24px;
    }
}

/* LANGUAGE SWITCHER */
.language-switcher{display:inline-flex;gap:4px;padding:4px;border:1px solid rgba(255,255,255,.35);border-radius:999px;background:rgba(255,255,255,.1);backdrop-filter:blur(8px);margin-left:18px}.lang-button{min-width:40px;padding:8px 10px;border:0;border-radius:999px;background:transparent;color:#fff;font:inherit;font-size:13px;font-weight:700;cursor:pointer}.lang-button:hover,.lang-button.active{background:#fffaf5;color:#3b2d24}@media(max-width:768px){.language-switcher{margin:0}}


/* FIXED TOP MENU */
.site-header{
    position:fixed;
    top:0;left:0;width:100%;
    padding:16px 0;
    background:rgba(47,36,29,.48);
    border-bottom:1px solid rgba(255,255,255,.16);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    z-index:5000;
}
.site-header .logo img{height:clamp(54px,5.4vw,82px)}
.video-hero-content{padding-top:150px}
html{scroll-padding-top:120px}

/* GROUP SESSIONS */
.group-sessions{padding:clamp(75px,8vw,110px) 0;background:linear-gradient(180deg,#f6efe8 0%,#fffaf5 100%)}
.group-intro{max-width:780px;margin:0 auto 42px;text-align:center}
.group-intro h2{margin:14px 0 18px}
.group-intro p{color:#5b4a3d;font-size:18px;line-height:1.8}
.group-showcase{display:grid;grid-template-columns:minmax(0,1.5fr) minmax(280px,.72fr);gap:18px;align-items:stretch}
.group-side{display:grid;grid-template-rows:1fr 1fr;gap:18px}
.group-photo{position:relative;min-height:260px;margin:0;overflow:hidden;border-radius:26px;background:#e8d6c5;box-shadow:0 20px 45px rgba(72,52,38,.13)}
.group-photo-main{min-height:560px}
.group-photo img{width:100%;height:100%;display:block;object-fit:cover}
.group-photo-main img{object-position:center center}
.group-side .group-photo:first-child img{object-position:center 42%}
.group-side .group-photo:last-child img{object-position:center 58%}
.group-photo figcaption{position:absolute;left:0;right:0;bottom:0;display:flex;flex-direction:column;gap:3px;padding:70px 26px 24px;color:#fff;background:linear-gradient(to top,rgba(37,27,20,.78),rgba(37,27,20,0))}
.group-photo figcaption strong{font-size:22px}.group-photo figcaption span{color:rgba(255,255,255,.88)}
.group-bottom{margin-top:28px;display:flex;align-items:center;justify-content:space-between;gap:26px}
.group-points{display:flex;flex-wrap:wrap;gap:10px}
.group-points span{padding:9px 13px;border-radius:999px;background:#efe1d3;border:1px solid #dec8b5;color:#6f543e;font-size:14px;font-weight:700}
.group-bottom .button{flex:0 0 auto}

@media(max-width:980px){
    .group-showcase{grid-template-columns:1fr}
    .group-side{grid-template-columns:1fr 1fr;grid-template-rows:none}
    .group-photo-main{min-height:480px}
}
@media(max-width:768px){
    .site-header{padding:10px 0}
    .site-header .header-content{flex-direction:column;gap:8px;padding:0 12px}
    .site-header .logo img{height:48px}
    .video-hero-content{padding-top:205px}
    html{scroll-padding-top:190px}
    .group-side{grid-template-columns:1fr}
    .group-photo-main{min-height:360px}
    .group-photo{min-height:250px}
    .group-bottom{flex-direction:column;align-items:flex-start}
}


/* FIX: keep NSV Shield at bottom-right of the viewport.
   backdrop-filter on the fixed header was turning the Shield into a
   header-positioned fixed descendant in some browsers. */
.site-header{
    background:rgba(47,36,29,.82);
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
}

.nsv-live-badge{
    position:fixed !important;
    top:auto !important;
    left:auto !important;
    right:24px !important;
    bottom:24px !important;
    z-index:9999 !important;
}

@media(max-width:600px){
    .nsv-live-badge{
        right:12px !important;
        bottom:12px !important;
    }
}
