:root {
    --primary: #ff7f7f;
    --primary-dark: #ff6b6b;
    --accent: #ffb347;
    --black: #3d2b2b;
    --white: #ffffff;
    --gray-100: #fff5e6;
    --gray-200: #ffe8d6;
    --gray-300: #cc9989;
    --gray-800: #5a4040;
    --gray-900: #3d2b2b;
    --font-body: 'Jost', sans-serif;
    --font-headers: 'Cormorant Infant', serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--gray-900);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-gold {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-gold:hover {
    background: var(--primary);
    color: var(--white);
}

.top-bar {
    background: var(--black);
    color: var(--white);
    padding: 8px 0;
    font-size: 12px;
    letter-spacing: 1px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header {
    position: fixed;
    top: 37px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.header.affix {
    top: 0;
    background: rgba(0, 0, 0, 0.9);
    padding: 12px 0;
    backdrop-filter: blur(10px);
}

.header .container {
    max-width: 1400px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-headers);
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 50px;
    height: auto;
    flex-shrink: 0;
    filter: hue-rotate(-10deg) saturate(1.2) brightness(1.05);
}

.header.affix .logo-img {
    width: 40px;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
    line-height: 1.2;
}

.logo-tagline {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: var(--primary);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.header.affix .logo-text {
    font-size: 28px;
}

.header.affix .logo-tagline {
    font-size: 9px;
}

.header.affix .logo-monogram {
    width: 40px;
    height: 40px;
}

.header.affix .logo-text {
    font-size: 28px;
}

.header.affix .logo-tagline {
    font-size: 9px;
}

.header.affix .logo-text {
    font-size: 28px;
}

.nav-list {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary);
}

.header .btn {
    padding: 10px 24px;
    font-size: 12px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    transform: scale(1.1);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.slide.zooming {
    animation: zoomEffect 6s ease forwards;
}

@keyframes zoomEffect {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: var(--white);
    width: 90%;
    max-width: 700px;
}

.slide-title {
    font-family: var(--font-headers);
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.5s;
}

.slide-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-headers);
    font-size: 48px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--gray-300);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.services {
    padding: 100px 0;
    background: var(--white);
}

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

.service-card {
    text-align: center;
    padding: 40px 30px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--primary);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-family: var(--font-headers);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 14px;
    color: var(--gray-300);
    margin-bottom: 16px;
    line-height: 1.8;
}

.service-price {
    font-family: var(--font-headers);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.service-card-full {
    text-align: left;
    padding: 40px 30px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.service-card-full:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--gray-200);
    padding-bottom: 16px;
}

.service-card-full .service-icon {
    width: 40px;
    height: 40px;
    margin: 0;
    flex-shrink: 0;
}

.service-card-full .service-title {
    font-family: var(--font-headers);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 0;
}

.service-list {
    margin-top: 16px;
}

.service-category {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin: 20px 0 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-list ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.service-list ul li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--gray-800);
    border-bottom: 1px solid var(--gray-200);
    line-height: 1.6;
}

.service-list ul li:last-child {
    border-bottom: none;
}

.service-note {
    display: block;
    font-size: 13px;
    color: var(--gray-300);
    margin-top: 4px;
    font-style: italic;
}

.parallax {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: calc(100% + 100px);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto;
}

.parallax-content h2 {
    font-family: var(--font-headers);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.parallax-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
    opacity: 0.9;
}

.gallery {
    padding: 100px 0;
    background: var(--gray-100);
}

.gallery-slider {
    width: 100%;
    padding: 20px 0 60px;
}

.gallery-slider .swiper-slide {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-slider .swiper-slide:hover img {
    transform: scale(1.05);
}

.swiper-pagination-bullet {
    background: var(--gray-300);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
}

.swiper-button-prev,
.swiper-button-next {
    color: var(--primary);
}

.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-block h3 {
    font-family: var(--font-headers);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.info-block p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-300);
}

.contact-map iframe {
    border-radius: 8px;
    width: 100%;
    height: 400px;
}

.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid > div:first-child {
    min-width: 0;
}

.footer-logo {
    font-family: var(--font-headers);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-grid > div:first-child p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.7;
    margin-top: 12px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.7;
    margin-top: 16px;
}

.footer-logo {
    font-family: var(--font-headers);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.7;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 14px;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 13px;
    opacity: 0.5;
}

.go-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(202, 163, 67, 0.3);
}

.go-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.go-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

.go-top svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .header {
        top: 0;
        background: rgba(0, 0, 0, 0.9);
        padding: 12px 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--gray-900);
        padding: 80px 30px;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-link {
        font-size: 16px;
    }
    
    .header .btn {
        display: none;
    }
    
    .slide-title {
        font-size: 42px;
    }
    
    .slide-subtitle {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .parallax-content h2 {
        font-size: 32px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 32px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 12px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
}
