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

:root {
    --primary: #1a1a1a;
    --secondary: #f5f5f0;
    --accent: #c9a961;
    --text: #2c2c2c;
    --light: #fafaf8;
    --border: #e0e0d8;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--light);
    font-size: 17px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(250, 250, 248, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.header-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}

.logo {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: lowercase;
    color: var(--primary);
    text-decoration: none;
}

.ad-notice {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: 20px;
}

nav ul {
    display: flex;
    gap: 50px;
    list-style: none;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

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

main {
    margin-top: 80px;
}

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 40px 80px;
    background: var(--light);
}

.hero-content {
    max-width: 720px;
}

.hero h1 {
    font-size: 68px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 40px;
    color: var(--primary);
    letter-spacing: -1px;
}

.hero-lead {
    font-size: 22px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 60px;
    font-weight: 300;
}

.cta-primary {
    display: inline-block;
    padding: 18px 50px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.cta-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.section {
    padding: 120px 0;
}

.section-minimal {
    padding: 140px 0;
}

.section-tight {
    padding: 80px 0;
}

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

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

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

.section-title {
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 19px;
    line-height: 1.7;
    color: #777;
    font-weight: 300;
}

.section-dark .section-subtitle {
    color: #aaa;
}

.visual-block {
    margin: 120px 0;
    position: relative;
}

.visual-block img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
    margin-top: 80px;
}

.service-card {
    background: white;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.service-card:hover {
    background: var(--secondary);
}

.service-info h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--primary);
}

.service-info p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    max-width: 520px;
}

.service-price {
    font-size: 42px;
    font-weight: 300;
    color: var(--accent);
    white-space: nowrap;
}

.form-section {
    background: var(--secondary);
    padding: 100px 0;
}

.form-container {
    max-width: 580px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 60px;
}

.form-intro h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 20px;
}

.form-intro p {
    font-size: 17px;
    color: #666;
    line-height: 1.6;
}

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

label {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid var(--border);
    background: white;
    font-size: 16px;
    font-family: inherit;
    color: var(--text);
    transition: border 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 20px;
    background: var(--primary);
    color: white;
    border: none;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

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

.testimonial-block {
    max-width: 700px;
    margin: 100px auto;
    text-align: center;
    padding: 0 40px;
}

.testimonial-quote {
    font-size: 24px;
    line-height: 1.6;
    font-style: italic;
    color: var(--text);
    margin-bottom: 30px;
    font-weight: 300;
}

.testimonial-author {
    font-size: 15px;
    color: #999;
    letter-spacing: 1px;
}

.content-block {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 40px;
}

.content-block h2 {
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 30px;
    margin-top: 80px;
}

.content-block h3 {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 20px;
    margin-top: 60px;
}

.content-block p {
    margin-bottom: 24px;
    line-height: 1.8;
    color: #555;
}

.content-block ul {
    margin: 30px 0;
    padding-left: 20px;
}

.content-block li {
    margin-bottom: 14px;
    line-height: 1.7;
    color: #555;
}

.image-container {
    margin: 80px 0;
    background: var(--secondary);
    overflow: hidden;
}

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

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

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    font-weight: 400;
    color: var(--accent);
}

.footer-col ul {
    list-style: none;
}

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

.footer-col a {
    color: #aaa;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-col p {
    color: #aaa;
    font-size: 15px;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #888;
    font-size: 13px;
}

.disclaimer {
    max-width: 900px;
    margin: 60px auto 0;
    padding: 40px;
    background: rgba(255,255,255,0.05);
    font-size: 13px;
    line-height: 1.7;
    color: #999;
    text-align: center;
}

.references {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.references h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--accent);
}

.references ol {
    list-style: none;
    counter-reset: ref-counter;
}

.references li {
    counter-increment: ref-counter;
    margin-bottom: 14px;
    padding-left: 30px;
    position: relative;
    font-size: 13px;
    line-height: 1.6;
    color: #aaa;
}

.references li:before {
    content: "[" counter(ref-counter) "]";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.references a {
    color: #aaa;
    text-decoration: none;
}

.references a:hover {
    color: white;
}

.citation {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    font-size: 0.9em;
    vertical-align: super;
    margin: 0 2px;
}

.citation:hover {
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(10px);
    color: white;
    padding: 30px;
    z-index: 10000;
    display: none;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

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

.cookie-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: none;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-cookie {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    font-family: inherit;
}

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

.btn-accept:hover {
    background: #d4b56e;
}

.btn-reject {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-reject:hover {
    border-color: white;
}

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

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

.thanks-icon {
    font-size: 64px;
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
}

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

.contact-info {
    max-width: 600px;
    margin: 60px auto;
    padding: 0 40px;
}

.info-item {
    margin-bottom: 50px;
}

.info-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 10px;
}

.info-value {
    font-size: 20px;
    color: var(--text);
    line-height: 1.6;
}

.legal-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 80px 40px;
}

.legal-content h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 400;
    margin-top: 50px;
    margin-bottom: 20px;
}

.legal-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 12px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .container,
    .header-content {
        padding: 0 20px;
    }

    .header-content {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-lead {
        font-size: 18px;
    }

    .section-title {
        font-size: 36px;
    }

    .service-card {
        flex-direction: column;
        gap: 30px;
        padding: 40px 30px;
        align-items: flex-start;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .visual-block img,
    .image-container img {
        height: 400px;
    }
}
