@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Didot:wght@400;700&family=Inter:wght@300;400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blush: #F5E6E0;
    --blush-dark: #E8D5CC;
    --black: #1A1A1A;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --gray: #6B6B6B;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Didot', serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 6vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--gray);
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 12px;
    }
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid var(--gold);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

@media (max-width: 767px) {
    header {
        box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
    }
}

@media (max-width: 320px) {
    header {
        box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--black);
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-size: clamp(0.75rem, 1.5vw, 0.95rem);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 400;
    color: var(--black);
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 100%;
}

.nav-links a:hover {
    color: var(--black);
    opacity: 1;
}

.nav-links a.active {
    color: var(--black);
    font-weight: 500;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.75rem;
    cursor: pointer;
    color: var(--black);
    padding: 8px;
    transition: all 0.3s ease;
    z-index: 1001;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.menu-toggle:hover {
    background-color: rgba(245, 230, 224, 0.3);
    transform: scale(1.05);
}

.menu-toggle:active {
    transform: scale(0.95);
}

.menu-toggle.active {
    color: var(--gold);
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 25px;
    }
    
    .nav-links a {
        font-size: clamp(0.75rem, 1.8vw, 0.875rem);
    }
}

@media (max-width: 900px) {
    .nav-links {
        gap: 20px;
    }
    
    .logo {
        font-size: clamp(1.1rem, 3vw, 1.5rem);
    }
}

@media (max-width: 767px) {
    nav {
        padding: 18px 0;
    }
    
    .logo {
        font-size: clamp(1rem, 4vw, 1.3rem);
        letter-spacing: 0.1em;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 90px 30px 40px;
        gap: 25px;
        border-bottom: 1px solid var(--gold);
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
        justify-content: flex-start;
        overflow-y: auto;
    }
    
    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links a {
        font-size: 1.1rem;
        padding: 15px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    .nav-links a::before {
        display: none;
    }
    
    .nav-links a:hover {
        background-color: rgba(245, 230, 224, 0.3);
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 15px 0;
    }
    
    .logo {
        font-size: clamp(0.9rem, 5vw, 1.2rem);
    }
    
    .menu-toggle {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
        padding: 6px;
    }
    
    .nav-links {
        padding: 80px 20px 30px;
        gap: 20px;
    }
    
    .nav-links a {
        font-size: 1rem;
        padding: 12px 0;
    }
}

@media (max-width: 320px) {
    nav {
        padding: 12px 0;
    }
    
    .logo {
        font-size: 0.9rem;
        letter-spacing: 0.05em;
    }
    
    .menu-toggle {
        width: 32px;
        height: 32px;
        font-size: 1.3rem;
        padding: 5px;
    }
    
    .nav-links {
        padding: 70px 15px 25px;
        gap: 15px;
    }
    
    .nav-links a {
        font-size: 0.95rem;
        padding: 10px 0;
    }
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blush) 0%, var(--white) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(245, 230, 224, 0.2) 0%, rgba(26, 26, 26, 0.3) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid var(--gold);
    margin: 20px;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 60px 40px;
    animation: fadeIn 1.2s ease;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    margin-bottom: 30px;
    color: var(--black);
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.9), 0 2px 10px rgba(212, 175, 55, 0.3);
    letter-spacing: 0.05em;
    font-weight: 700;
}

.hero p {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    max-width: 600px;
    margin: 0 auto 50px;
    color: var(--black);
    text-shadow: 0 2px 15px rgba(255, 255, 255, 0.9), 0 1px 5px rgba(212, 175, 55, 0.2);
    line-height: 1.8;
    font-weight: 300;
}

.hero .btn {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid var(--gold);
    padding: 18px 50px;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), 0 2px 10px rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
}

.hero .btn:hover {
    background-color: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4), 0 3px 15px rgba(0, 0, 0, 0.2);
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid var(--gold);
    background-color: transparent;
    color: var(--black);
    font-size: clamp(0.875rem, 2vw, 1rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn:hover {
    background-color: var(--gold);
    color: var(--white);
    opacity: 1;
}

.section {
    padding: 80px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .section {
        opacity: 1;
        transform: translateY(0);
    }
    
    .section.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
    z-index: 2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: var(--gold);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid var(--gold);
    background-color: var(--white);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    margin-bottom: 20px;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 767px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

.testimonials {
    background-color: var(--blush);
    padding: 80px 0;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(245, 230, 224, 0.85) 0%, rgba(245, 230, 224, 0.9) 100%);
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.testimonial {
    background-color: var(--white);
    padding: 40px;
    border-left: 3px solid var(--gold);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--black);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
}

@media (max-width: 1024px) {
    .testimonials {
        padding: 70px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 35px;
        margin-top: 50px;
    }
    
    .testimonial {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }
    
    .testimonial {
        padding: 30px;
    }
    
    .testimonial p {
        font-size: clamp(0.95rem, 2.5vw, 1.1rem);
        margin-bottom: 18px;
    }
}

@media (max-width: 600px) {
    .testimonials {
        padding: 50px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 35px;
    }
    
    .testimonial {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 40px 0;
    }
    
    .testimonials-grid {
        gap: 20px;
        margin-top: 30px;
    }
    
    .testimonial {
        padding: 20px;
        border-left-width: 2px;
    }
    
    .testimonial p {
        font-size: 0.95rem;
        margin-bottom: 15px;
        line-height: 1.6;
    }
    
    .testimonial-author {
        font-size: 0.875rem;
    }
}

@media (max-width: 320px) {
    .testimonials {
        padding: 35px 0;
    }
    
    .testimonials-grid {
        gap: 15px;
        margin-top: 25px;
    }
    
    .testimonial {
        padding: 18px;
        border-left-width: 2px;
    }
    
    .testimonial p {
        font-size: 0.875rem;
        margin-bottom: 12px;
        line-height: 1.5;
    }
    
    .testimonial-author {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        margin-bottom: 40px;
        padding-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .section-title {
        margin-bottom: 30px;
        padding-bottom: 12px;
    }
}

@media (max-width: 320px) {
    .section-title {
        margin-bottom: 25px;
        padding-bottom: 10px;
    }
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    border: 1px solid var(--gold);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--black);
    font-size: clamp(0.875rem, 2vw, 1rem);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--gold);
    background-color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.875rem, 2vw, 1rem);
    color: var(--black);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    line-height: 1.4;
}

.map-container {
    width: 100%;
    height: 400px;
    margin-top: 40px;
    border: 1px solid var(--gold);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

footer {
    background-color: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: var(--gold);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
}

.footer-section p,
.footer-section a {
    color: var(--blush);
    font-size: clamp(0.875rem, 2vw, 1rem);
    margin-bottom: 10px;
    display: block;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--blush);
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    color: var(--blush);
}

.privacy-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background-color: var(--white);
    border: 1px solid var(--gold);
    padding: 30px;
    z-index: 10000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(150%);
    transition: transform 0.3s ease;
}

.privacy-popup.active {
    transform: translateY(0);
}

.privacy-popup p {
    margin-bottom: 20px;
    font-size: clamp(0.875rem, 2vw, 1rem);
}

.privacy-popup-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.privacy-popup-buttons .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.thank-you-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.thank-you-content h1 {
    margin-bottom: 20px;
    color: var(--black);
}

.thank-you-content p {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    margin-bottom: 40px;
    color: var(--gray);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .hero {
        margin-top: 70px;
    }
}

@media (max-width: 480px) {
    .hero {
        margin-top: 65px;
    }
}

@media (max-width: 320px) {
    .hero {
        margin-top: 60px;
    }
}

@media (max-width: 767px) {
    .hero::after {
        margin: 10px;
    }
    
    .hero-content {
        padding: 40px 20px;
    }
    
    .hero .btn {
        padding: 15px 35px;
        font-size: 0.875rem;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        min-height: 80vh;
        margin-top: 70px;
    }
    
    .hero::after {
        margin: 5px;
    }
    
    .hero-content {
        padding: 30px 15px;
    }
    
    .hero h1 {
        margin-bottom: 20px;
        text-shadow: 0 2px 10px rgba(255, 255, 255, 0.9);
    }
    
    .hero p {
        margin-bottom: 30px;
        text-shadow: 0 1px 8px rgba(255, 255, 255, 0.9);
    }
    
    .section {
        padding: 40px 0;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .privacy-popup {
        padding: 20px;
    }
}

