:root {
    --primary: #1a1a2e;
    --secondary: #c9a962;
    --accent: #e8d5a3;
    --background: #fafafa;
    --surface: #ffffff;
    --text-primary: #1a1a2e;
    --text-secondary: #5a5a6e;
    --text-light: #8a8a9a;
    --border: #e5e5e5;
    --shadow: rgba(26, 26, 46, 0.08);
    --shadow-hover: rgba(26, 26, 46, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--background);
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover {
    color: var(--primary);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.ad-disclosure {
    background-color: var(--primary);
    color: var(--accent);
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    letter-spacing: 0.05em;
}

header {
    background-color: var(--surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.logo span {
    color: var(--secondary);
}

nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

nav a {
    color: var(--text-primary);
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

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

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: var(--primary);
    transition: all 0.3s ease;
}

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: #d4c4a8;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.7) 0%, rgba(26, 26, 46, 0.3) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    padding: 80px 0;
}

.hero h1 {
    color: var(--surface);
    margin-bottom: 1.5rem;
}

.hero p {
    color: var(--accent);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

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

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

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--secondary);
    color: var(--secondary);
}

.btn-outline:hover {
    background-color: var(--secondary);
    color: var(--primary);
}

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

.btn-dark:hover {
    background-color: var(--text-secondary);
}

section {
    padding: 100px 0;
}

.section-light {
    background-color: var(--surface);
}

.section-alt {
    background-color: var(--background);
}

.section-dark {
    background-color: var(--primary);
    color: var(--surface);
}

.section-dark h2,
.section-dark h3 {
    color: var(--surface);
}

.section-dark p {
    color: var(--accent);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header-left {
    text-align: left;
    margin-bottom: 50px;
}

.tagline {
    display: block;
    color: var(--secondary);
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.intro-section {
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-image {
    flex: 1;
    background-color: #c9b896;
}

.intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: var(--surface);
    padding: 40px 30px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 20px 40px var(--shadow);
}

.service-card h3 {
    margin-bottom: 16px;
}

.service-card p {
    font-size: 15px;
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.75rem;
    color: var(--secondary);
    font-weight: 300;
    margin-bottom: 20px;
}

.service-price span {
    font-size: 14px;
    color: var(--text-light);
}

.service-image {
    width: 100%;
    height: 200px;
    margin-bottom: 24px;
    background-color: #d4c4a8;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.features-row {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.features-row:last-child {
    margin-bottom: 0;
}

.features-row.reverse {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-image {
    flex: 1;
    background-color: #c9b896;
}

.feature-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.testimonials {
    display: flex;
    gap: 40px;
}

.testimonial {
    flex: 1;
    padding: 40px;
    background-color: var(--surface);
    border-left: 3px solid var(--secondary);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.testimonial-author {
    font-size: 14px;
    color: var(--text-light);
    letter-spacing: 0.05em;
}

.cta-section {
    text-align: center;
    padding: 120px 0;
}

.cta-section h2 {
    color: var(--surface);
    margin-bottom: 20px;
}

.cta-section p {
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--surface);
    padding: 50px;
    border: 1px solid var(--border);
}

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

.form-group label {
    display: block;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid var(--border);
    background-color: var(--background);
    color: var(--text-primary);
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

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

.form-submit {
    width: 100%;
    margin-top: 16px;
}

.about-intro {
    display: flex;
    gap: 80px;
    margin-bottom: 100px;
}

.about-text {
    flex: 1.2;
}

.about-image {
    flex: 0.8;
    background-color: #c9b896;
}

.about-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

.values-grid {
    display: flex;
    gap: 40px;
}

.value-item {
    flex: 1;
    text-align: center;
    padding: 40px 30px;
}

.value-number {
    font-size: 3rem;
    color: var(--secondary);
    font-weight: 300;
    margin-bottom: 16px;
}

.value-item h3 {
    margin-bottom: 12px;
}

.contact-layout {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h4 {
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 8px;
}

.contact-item p {
    color: var(--text-primary);
    font-size: 1.1rem;
}

.contact-form {
    flex: 1;
}

footer {
    background-color: var(--primary);
    color: var(--accent);
    padding: 80px 0 40px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: var(--surface);
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.footer-col p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-light);
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-light);
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    font-size: 13px;
    color: var(--text-light);
}

.disclaimer {
    background-color: #f5f5f5;
    padding: 30px 0;
    border-top: 1px solid var(--border);
}

.disclaimer p {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--surface);
    padding: 24px;
    box-shadow: 0 -4px 20px var(--shadow);
    z-index: 9999;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
}

.cookie-text a {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 16px;
}

.cookie-buttons button {
    padding: 12px 24px;
    font-size: 13px;
}

.page-header {
    background-color: var(--primary);
    padding: 100px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: var(--surface);
    margin-bottom: 16px;
}

.page-header p {
    color: var(--accent);
}

.legal-content {
    padding: 80px 0;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 30px;
    margin-bottom: 12px;
}

.legal-content p,
.legal-content li {
    font-size: 15px;
    color: var(--text-secondary);
}

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-content li {
    margin-bottom: 8px;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary);
}

.thanks-content h1 {
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.references-section {
    background-color: var(--background);
    padding: 40px 0;
    border-top: 1px solid var(--border);
}

.references-section h4 {
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--text-light);
}

.references-list {
    font-size: 13px;
    color: var(--text-light);
}

.references-list a {
    font-size: 13px;
}

@media (max-width: 992px) {
    .intro-section,
    .about-intro,
    .features-row,
    .features-row.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .contact-layout {
        flex-direction: column;
        gap: 60px;
    }

    .testimonials {
        flex-direction: column;
    }

    .values-grid {
        flex-wrap: wrap;
    }

    .value-item {
        flex: 1 1 calc(50% - 20px);
    }

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--surface);
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 40px 40px;
        gap: 24px;
        transition: right 0.3s ease;
        box-shadow: -4px 0 20px var(--shadow);
    }

    nav.active {
        right: 0;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        min-height: 80vh;
    }

    .hero-content {
        padding: 60px 0;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .values-grid {
        flex-direction: column;
    }

    .value-item {
        flex: 1 1 100%;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    .footer-col {
        flex: 1 1 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .form-container {
        padding: 30px 20px;
    }
}
