* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #fafaf9;
    color: #1c1c1c;
    line-height: 1.5;
    overflow-x: hidden;
}
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}
.announcement-bar {
    background: #0e2b2b;
    color: #e4d9c5;
    text-align: center;
    padding: 0.75rem;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}
.site-header {
    position: sticky;
    top: 0;
    background: rgba(250, 250, 249, 0.92);
    backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 0;
}
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0e2b2b;
    text-decoration: none;
    line-height: 1;
}
.logo span {
    color: #b38a4c;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.main-nav a {
    text-decoration: none;
    color: #2d2d2d;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: #b38a4c;
    transition: width 0.3s ease;
}
.main-nav a:hover {
    color: #0e2b2b;
}
.main-nav a:hover::after {
    width: 100%;
}
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}
.btn-primary {
    background: #b38a4c;
    color: #fff;
    box-shadow: 0 4px 12px rgba(179,138,76,0.3);
}
.btn-primary:hover {
    background: #9e7740;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(179,138,76,0.4);
}
.btn-outline {
    border: 2px solid #0e2b2b;
    color: #0e2b2b;
    background: transparent;
}
.btn-outline:hover {
    background: #0e2b2b;
    color: #fff;
}
.hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    min-height: 85vh;
    padding: 2rem 0;
    background: radial-gradient(ellipse at 10% 20%, rgba(179,138,76,0.08) 0%, transparent 60%);
}
.hero-content {
    padding-right: 2rem;
}
.hero-badge {
    display: inline-block;
    background: rgba(179,138,76,0.1);
    color: #9e7740;
    padding: 0.3rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.04em;
}
.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #0e2b2b;
}
.hero h1 em {
    font-style: italic;
    color: #b38a4c;
}
.hero p {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    max-width: 480px;
}
.hero-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.circle-frame {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
    animation: float 6s ease-in-out infinite;
}
.circle-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
.section-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #0e2b2b;
}
.section-subtitle {
    color: #6b6b6b;
    font-size: 1.15rem;
    max-width: 600px;
    margin-bottom: 3rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}
.service-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.2rem 1.8rem;
    box-shadow: 0 12px 30px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.03);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 40px rgba(0,0,0,0.08);
}
.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(179,138,76,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}
.service-card p {
    color: #5c5c5c;
    font-size: 0.95rem;
}
.about-snippet {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 5rem 0;
}
.about-image {
    border-radius: 30px;
    height: 380px;
    position: relative;
    overflow: hidden;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.stat-counters {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
}
.counter {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0e2b2b;
    display: flex;
    align-items: baseline;
}
.counter span {
    font-size: 1rem;
    color: #6b6b6b;
    margin-left: 0.3rem;
    font-weight: 500;
}
.testimonial-section {
    background: #0e2b2b;
    color: #fff;
    padding: 5rem 0;
    border-radius: 40px 40px 0 0;
    margin-top: 3rem;
}
.testimonial-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0.5rem;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.testimonial-carousel::-webkit-scrollbar {
    display: none;
}
.testimonial-card {
    min-width: 340px;
    background: rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 2rem;
    scroll-snap-align: start;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
}
.stars {
    color: #b38a4c;
    font-size: 1.2rem;
}
.testimonial-text {
    font-style: italic;
    font-size: 1.05rem;
    margin: 1rem 0;
}
.footer {
    background: #0e2b2b;
    color: #ccc;
    padding: 4rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer h4 {
    color: #fff;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}
.footer a {
    color: #b8b8b8;
    text-decoration: none;
    display: block;
    margin-bottom: 0.6rem;
    transition: color 0.3s;
}
.footer a:hover {
    color: #b38a4c;
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1c1c1c;
    color: #e0e0e0;
    padding: 1.2rem 2rem;
    display: none;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: 0 -8px 20px rgba(0,0,0,0.2);
    flex-wrap: wrap;
    gap: 1rem;
}
.cookie-banner.active {
    display: flex;
}
.cookie-buttons {
    display: flex;
    gap: 1rem;
}
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(6px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}
.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}
.modal {
    background: #fff;
    border-radius: 28px;
    padding: 2.5rem;
    max-width: 520px;
    width: 90%;
    box-shadow: 0 30px 50px rgba(0,0,0,0.3);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}
.modal h2 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
}
.form-group {
    margin-bottom: 1.2rem;
}
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 14px;
    font-family: inherit;
    font-size: 1rem;
}
.modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
}
.success-message {
    display: none;
    text-align: center;
    padding: 2rem;
}
.success-message.show {
    display: block;
}
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .hero { grid-template-columns: 1fr; text-align: center; }
    .hero-content { padding-right: 0; }
    .hero p { max-width: 100%; }
    .hero-visual { margin-top: 2rem; }
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-snippet { grid-template-columns: 1fr; }
    .main-nav { display: none; }
}