:root{ 
    --bg: #FAF9F7; 
    --card: #FFFFFF; 
    --gold-1: #C59A41; 
    --gold-2: #E0B85A; 
    --black: #0b0b0b; 
    --muted: #6b6b6b; 
    --accent: #F7F3EA; 
    --radius: 14px; 
    --max-width: 1100px; 
} 

*{box-sizing:border-box} 

html,body{height:100%} 

body{ 
    margin:0; 
    font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; 
    background: linear-gradient(180deg, var(--bg), #fff); 
    color:var(--black); 
    -webkit-font-smoothing:antialiased; 
    -moz-osx-font-smoothing:grayscale; 
    line-height:1.45; 
    padding:24px; 
    display:flex; 
    justify-content:center; 
    scroll-behavior:smooth; 
} 

.container{ 
    width:100%; 
    max-width:var(--max-width); 
} 

header{ 
    display:flex; 
    align-items:center; 
    justify-content:space-between; 
    gap:16px; 
    margin-bottom:28px; 
} 

.brand{ 
    display:flex; 
    align-items:center; 
    gap:14px; 
    text-decoration:none; 
    color:var(--black); 
} 

.logo{ 
    width:64px; 
    height:64px; 
    border-radius:12px; 
    background:linear-gradient(135deg,var(--gold-2),var(--gold-1)); 
    box-shadow: 0 6px 18px rgba(197,154,65,0.18); 
    display:flex; 
    align-items:center; 
    justify-content:center; 
    font-weight:700; 
    color:#fff; 
    font-size:20px; 
}

.logo-image {
    width: 100%;
    border-radius: 12px;
}

.brand h1{ 
    margin:0; 
    font-size:18px; 
    letter-spacing:0.2px; 
} 

.brand p{
    margin:0;
    font-size:13px;
    color:var(--muted)
} 

nav a{ 
    text-decoration:none; 
    color:var(--muted); 
    margin-left:18px; 
    font-size:14px; 
    transition: color 0.3s ease; 
} 

nav a:hover{ 
    color:var(--gold-1); 
} 

main{background:transparent;} 

/* Hero */ 
.hero{ 
    display:grid; 
    grid-template-columns: 1fr 420px; 
    gap:28px; 
    align-items:stretch; 
} 

.card{ 
    background:var(--card); 
    border-radius:var(--radius); 
    padding:28px; 
    box-shadow: 0 6px 30px rgba(19,19,19,0.04); 
} 

.hero-left h2{ 
    margin:0 0 12px 0; 
    font-size:28px; 
    letter-spacing:-0.3px; 
} 

.lead{ 
    color:var(--muted); 
    margin-bottom:18px; 
    font-size:15px; 
} 

.capsules{ 
    display:flex; 
    gap:10px; 
    flex-wrap:wrap; 
    margin:14px 0 22px; 
} 

.capsule{ 
    background:var(--accent); 
    padding:10px 14px; 
    border-radius:10px; 
    font-weight:600; 
    font-size:14px; 
    color:var(--black); 
    box-shadow: inset 0 -2px 0 rgba(0,0,0,0.03); 
} 

.cta-row{ 
    display:flex; 
    gap:12px; 
    align-items:center; 
    margin-top:6px; 
} 

/* Анімація кнопок */ 
.btn{ 
    position:relative; 
    background:linear-gradient(90deg,var(--gold-1),var(--gold-2)); 
    color:#fff; 
    padding:12px 18px; 
    border-radius:10px; 
    border:0; 
    font-weight:700; 
    cursor:pointer; 
    box-shadow: 0 6px 20px rgba(197,154,65,0.18); 
    text-decoration:none; 
    transition: transform 0.25s ease; 
    z-index:1; 
} 

.btn:hover{transform:scale(1.05);} 

.btn::after{ 
    content:""; 
    position:absolute; 
    top:0;
    left:0;
    right:0;
    bottom:0; 
    border-radius:inherit; 
    background:linear-gradient(90deg,var(--gold-1),var(--gold-2)); 
    opacity:0.5; 
    z-index:-1; 
    animation:pulse 2.5s infinite ease-in-out; 
} 

@keyframes pulse{ 
    0%{transform:scale(1);opacity:0.5;} 
    50%{transform:scale(1.15);opacity:0.2;} 
    100%{transform:scale(1);opacity:0.5;} 
} 

.btn.secondary{ 
    background:transparent; 
    border:1px solid #e8e6e3; 
    color:var(--black); 
    font-weight:600; 
} 

/* Right column: promo */ 
.hero-right{ 
    display:flex; 
    flex-direction:column; 
    gap:12px; 
} 

.promo{ 
    position:relative; 
    height:100%; 
    min-height:220px; 
    border-radius:12px; 
    overflow:hidden; 
    display:flex; 
    align-items:flex-end; 
    justify-content:flex-start; 
    padding:18px; 
    background: linear-gradient(0deg, rgba(0,0,0,0.3), rgba(0,0,0,0.05)), url('assets/images/master.jpg') center/cover no-repeat; 
    color:#fff; 
} 

@keyframes shine{ 
    0%{transform:rotate(0deg);} 
    100%{transform:rotate(360deg);} 
} 

.promo h3{
    margin:0;
    font-size:20px;
    z-index:1;
    position:relative;
} 

.promo p{
    margin:6px 0 0;
    font-size:13px;
    color:rgba(255,255,255,0.9);
    z-index:1;
    position:relative;
} 

/* Special offer */ 
.special{ 
    margin-top:16px; 
    padding:14px; 
    border-radius:12px; 
    background:linear-gradient(90deg, rgba(230,200,115,0.08), rgba(230,200,115,0.03)); 
    border:1px solid rgba(224,184,90,0.12); 
    display:flex; 
    align-items:center; 
    justify-content:space-between; 
    gap:12px; 
} 

.special .txt{font-weight:600} 

.special small{
    display:block;
    color:var(--muted);
    font-weight:500
} 

/* About / benefits */ 
.about{ 
    margin-top:28px; 
    display:grid; 
    grid-template-columns: 1fr 1fr; 
    gap:20px; 
} 

.about .box{ 
    padding:20px; 
    border-radius:12px; 
    background:linear-gradient(180deg,#fff,#fbfbfb); 
    border:1px solid #f0efed; 
} 

.about h4{
    margin-top:0;
    margin-bottom:8px
} 

/* Price section */ 
.prices{ 
    margin-top:28px; 
    display:flex; 
    flex-direction:column; 
    gap:18px; 
} 

.price-card{ 
    padding:18px; 
    border-radius:12px; 
    background:linear-gradient(180deg,#fff,#fffaf6); 
    border:1px solid #f3efe6; 
} 

.price-title{ 
    display:flex; 
    align-items:center; 
    justify-content:space-between; 
    gap:12px; 
    margin-bottom:12px; 
} 

.price-title h3{margin:0} 

.table{ 
    width:100%; 
    border-collapse:collapse; 
    font-size:14px; 
} 

.table th, .table td{ 
    text-align:left; 
    padding:10px 12px; 
    border-bottom:1px dashed #eee; 
} 

.table th{
    color:var(--muted);
    font-weight:600;
    font-size:13px
} 

.table tr:last-child td{border-bottom:none} 

/* Bio hair grid */ 
.bio-grid{ 
    display:grid; 
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); 
    gap:12px; 
    margin-top:10px; 
} 

.bio-item{ 
    background:#fff; 
    border-radius:10px; 
    padding:12px; 
    border:1px solid #f1efec; 
} 

.bio-item h5{
    margin:0 0 6px 0;
    font-size:15px
} 

.bio-item p{
    margin:0;
    color:var(--muted);
    font-size:14px
} 

footer{ 
    margin-top:34px; 
    padding:18px; 
    border-radius:12px; 
    background:linear-gradient(180deg,#fff,#fbfbfb); 
    border:1px solid #f0efed; 
    display:flex; 
    justify-content:space-between; 
    align-items:center; 
    gap:12px; 
} 

footer p{
    margin:0;
    color:var(--muted);
    font-size:14px
} 

/* Reveal animation */ 
.reveal{ 
    opacity:0; 
    transform:translateY(40px); 
    transition:all 0.8s ease; 
} 

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

/* Floating contact button */ 
.floating-btn{ 
    position:fixed; 
    bottom:24px; 
    right:24px; 
    background:linear-gradient(90deg,var(--gold-1),var(--gold-2)); 
    color:#fff; 
    border-radius:50%; 
    width:58px; 
    height:58px; 
    display:flex;
    align-items:center;
    justify-content:center; 
    cursor:pointer; 
    font-size:26px; 
    box-shadow:0 6px 20px rgba(197,154,65,0.25); 
    transition:transform 0.3s; 
    z-index:1000; 
} 

.floating-btn:hover{transform:scale(1.1);} 

.menu{ 
    display:none; 
    position:absolute; 
    bottom:70px; 
    right:0; 
    background:#fff; 
    border-radius:10px; 
    box-shadow:0 6px 18px rgba(0,0,0,0.1); 
    flex-direction:column; 
} 

.menu a{ 
    color:var(--black); 
    padding:10px 16px; 
    text-decoration:none; 
    border-bottom:1px solid #eee; 
} 

.menu a:last-child{border-bottom:none;} 

.floating-btn:hover .menu{display:flex;} 

/* === FOOTER === */ 
.footer { 
    background: var(--black); 
    color: #fff; 
    padding: 32px 16px; 
    text-align: center; 
    border-top: 1px solid rgba(255,255,255,0.1); 
    margin-top: 48px; 
} 

.footer-inner { 
    max-width: 900px; 
    margin: 0 auto; 
    display: flex; 
    flex-direction: column; 
    gap: 8px; 
} 

.footer-brand { 
    font-size: 18px; 
    font-weight: 600; 
    color: var(--gold-1); 
    margin: 0; 
} 

.footer-text { 
    font-size: 14px; 
    color: rgba(255,255,255,0.7); 
    margin: 0; 
} 

.footer-links { 
    margin-top: 6px; 
    display: flex; 
    justify-content: center; 
    gap: 16px; 
} 

.footer-links a { 
    color: rgba(255,255,255,0.8); 
    text-decoration: none; 
    font-size: 14px; 
    transition: color 0.3s; 
} 

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

/* === LOCATION === */ 
.location { 
    padding: 60px 20px; 
    background: #fff; 
    color: var(--black); 
} 

.location-inner { 
    max-width: 1100px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 32px; 
    align-items: center; 
} 

.map-container iframe { 
    width: 100%; 
    height: 320px; 
    border: none; 
    border-radius: 12px; 
    box-shadow: 0 6px 16px rgba(0,0,0,0.1); 
} 

/* Права частина — центрована вертикально */ 
.location-info { 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: flex-start; 
    height: 100%; 
} 

.location-info h3 { 
    font-size: 24px; 
    color: var(--gold-1); 
    margin-bottom: 12px; 
} 

.location-info p { 
    font-size: 15px; 
    line-height: 1.6; 
    margin: 8px 0; 
} 

.location-info a { 
    color: var(--gold-1); 
    text-decoration: none; 
} 

.location-info a:hover { 
    text-decoration: underline; 
} 

/* Стиль кнопки */ 
.location-info .btn { 
    background: linear-gradient(90deg, var(--gold-1), var(--gold-2)); 
    color: #fff; /* ✅ білий текст */ 
    padding: 12px 18px; 
    border-radius: 10px; 
    font-weight: 700; 
    text-decoration: none; 
    margin-top: 14px; 
    box-shadow: 0 6px 20px rgba(197,154,65,0.18); 
    transition: transform 0.2s ease, box-shadow 0.2s ease; 
} 

.location-info .btn:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 8px 24px rgba(197,154,65,0.25); 
}

/* ======== КАРУСЕЛЬ (трехслойный вид) ======== */
.carousel-section {
    position: relative;
    width: 100%;
    height: 80vh;          /* занимает около 80% высоты экрана */
    max-height: 1000px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 12px 0;
}

/* контейнер с абсолютными слайдами */
.carousel {
    position: relative;
    width: 100%;
    height: 100%;
    pointer-events: none; /* чтобы клики перехватывали сами .slide */
}

/* Общие стили для слайдов (картинок) */
.slide {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateZ(0) scale(1);
    width: 70%;            /* центральный занимает ~70% ширины контейнера */
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(12,12,12,0.18);
    transition: transform 0.62s cubic-bezier(.22,.9,.34,1), filter 0.62s cubic-bezier(.22,.9,.34,1), opacity 0.62s;
    opacity: 0;
    pointer-events: auto;  /* кликабельные */
    cursor: zoom-in;
    will-change: transform, filter, opacity;
}

/* центральный (активный) слайд */
.slide.active {
    transform: translateX(-50%) scale(1);
    opacity: 1;
    z-index: 30;
    filter: none;
}

/* предыдущий — слева, слегка за центральным, размытый */
.slide.prev {
    transform: translateX(-150%) scale(0.92);
    opacity: 0.95;
    z-index: 20;
    filter: blur(4px) contrast(0.95) brightness(0.95);
    box-shadow: none;
}

/* следующий — справа, слегка за центральным, размытый */
.slide.next {
    transform: translateX(50%) scale(0.92);
    opacity: 0.95;
    z-index: 20;
    filter: blur(4px) contrast(0.95) brightness(0.95);
    box-shadow: none;
}

/* скрытые далеко — выезжают влево/вправо и прозрачны */
.slide.left-hidden {
    transform: translateX(-300%) scale(0.9);
    opacity: 0;
    z-index: 10;
    filter: blur(6px) saturate(.9);
}

.slide.right-hidden {
    transform: translateX(300%) scale(0.9);
    opacity: 0;
    z-index: 10;
    filter: blur(6px) saturate(.9);
}

/* небольшая декоративная рамка у активного */
.slide.active::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255,255,255,0.02);
    pointer-events: none;
}

/* ===== МОДАЛЬНОЕ ОКНО ===== */
.image-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.image-modal.active {
    display: flex;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0,0,0,0.7);
    animation: zoomIn 0.25s ease;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 100000;
}

.creator {
  position: fixed;
  bottom: 8px;
  right: 24px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-family: sans-serif;
}

.creator a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

.creator a:hover {
  color: var(--gold-1);
}


@keyframes zoomIn {
    from {
    transform: scale(0.6);
    opacity: 0;
    }
    to {
    transform: scale(1);
    opacity: 1;
    }
}

/* ===== АДАПТАЦИЯ (мобильные) ===== */
@media (max-width: 980px) {
    .slide { width: 85%; border-radius: 10px; }
    .slide.prev { transform: translateX(-140%) scale(0.92); }
    .slide.next { transform: translateX(40%) scale(0.92); }
    .carousel-section { height: 70vh; }
}

@media (max-width: 520px) {
    .slide { width: 92%; border-radius: 8px; }
    .carousel-section { height: 60vh; padding: 8px 0; }
    .close-modal { font-size: 30px; top: 12px; right: 12px; }
    .modal-content { max-width: 95%; max-height: 85%; }
}

/* адаптив */ 
@media (max-width: 768px) { 
    .location-inner { 
        grid-template-columns: 1fr; 
        gap: 24px; 
    } 
    
    .map-container iframe { 
        height: 280px; 
    } 
    
    .location-info { 
        align-items: center; 
        text-align: center; 
    } 
} 

/* адаптив */ 
@media (max-width: 768px) { 
    .location-inner { 
        grid-template-columns: 1fr; 
        gap: 24px; 
    } 
    
    .map-container iframe { 
        height: 280px; 
    } 
} 

/* Responsive */ 
@media (max-width:980px){ 
    .hero{
        grid-template-columns:1fr
    } 
    
    .hero-right{
        order:-1;
        padding: 0;
    } 
    
    .about{
        grid-template-columns:1fr
    } 
} 

@media (max-width:520px){ 
    header{
        flex-direction:column;
        align-items:flex-start;
        gap:12px
    } 
    
    .brand h1{
        font-size:16px
    } 
}