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

:root {
    --primary: #2c1810;
    --secondary: #8b6f47;
    --accent: #d4a574;
    --light: #f5f1ed;
    --white: #ffffff;
    --text: #3a3a3a;
    --border: #e0d5cc;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
}

.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.ad-disclosure {
    background: var(--accent);
    color: var(--primary);
    text-align: center;
    padding: 6px 20px;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.hero-visual {
    position: relative;
    height: 92vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 85px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.75) 0%, rgba(139, 111, 71, 0.45) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 820px;
    padding: 0 30px;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: normal;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.35rem;
    margin-bottom: 45px;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-primary {
    display: inline-block;
    padding: 18px 55px;
    background: var(--accent);
    color: var(--primary);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.section {
    padding: 100px 5%;
}

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

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

.visual-story {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.story-block {
    display: flex;
    align-items: center;
    gap: 80px;
}

.story-block:nth-child(even) {
    flex-direction: row-reverse;
}

.story-visual {
    flex: 1;
    position: relative;
}

.story-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--primary);
    font-weight: normal;
    line-height: 1.3;
}

.story-content p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: var(--text);
}

.inline-cta {
    display: inline-block;
    margin-top: 20px;
    color: var(--secondary);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 3px;
}

.inline-cta::after {
    content: '\2192';
    margin-left: 8px;
    transition: margin-left 0.3s;
}

.inline-cta:hover::after {
    margin-left: 15px;
}

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-intro h2 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: normal;
}

.section-intro p {
    font-size: 1.2rem;
    color: var(--text);
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.service-image-wrap {
    height: 280px;
    overflow: hidden;
    background: var(--border);
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-image {
    transform: scale(1.08);
}

.service-info {
    padding: 35px;
}

.service-info h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-info p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.price-tag {
    font-size: 2rem;
    color: var(--secondary);
    font-weight: bold;
    margin-bottom: 25px;
    display: block;
}

.select-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    font-family: inherit;
}

.select-btn:hover {
    background: var(--secondary);
}

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

.trust-section {
    padding: 120px 5%;
    background: var(--primary);
    color: var(--white);
}

.trust-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.trust-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: normal;
}

.trust-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.testimonials {
    display: flex;
    gap: 40px;
    margin-top: 70px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.1);
    padding: 35px;
    border-left: 4px solid var(--accent);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 0.95rem;
    opacity: 0.85;
}

.form-section {
    padding: 100px 5%;
    background: var(--light);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary);
    text-align: center;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text);
    font-size: 1.1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 600;
}

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

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

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

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
    font-family: inherit;
    font-weight: 600;
    letter-spacing: 0.5px;
}

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

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-note {
    margin-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text);
}

.about-visual {
    position: relative;
    height: 450px;
    margin-bottom: 80px;
    background: var(--border);
}

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

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h1 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: var(--primary);
    font-weight: normal;
}

.about-content h2 {
    font-size: 2.2rem;
    margin: 50px 0 20px;
    color: var(--primary);
    font-weight: normal;
}

.about-content p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.contact-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-visual {
    flex: 1;
    background: var(--border);
}

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

.contact-details {
    flex: 1;
}

.contact-details h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--primary);
}

.contact-info-block {
    margin-bottom: 40px;
}

.contact-info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--secondary);
}

.contact-info-block p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.legal-page {
    padding: 100px 5%;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--primary);
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 15px;
    color: var(--primary);
}

.legal-content p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

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

.thanks-wrapper {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 5%;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
}

.thanks-content h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.thanks-content p {
    font-size: 1.25rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-content .cta-primary {
    margin-top: 30px;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-col p {
    line-height: 1.8;
    opacity: 0.9;
}

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

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    opacity: 0.8;
    font-size: 0.9rem;
}

.disclaimer {
    background: var(--light);
    padding: 50px 5%;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 25px 5%;
    z-index: 2000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    margin-bottom: 10px;
}

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

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s;
    font-family: inherit;
}

.cookie-accept {
    background: var(--accent);
    color: var(--primary);
}

.cookie-accept:hover {
    background: var(--white);
}

.cookie-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cookie-reject:hover {
    background: var(--white);
    color: var(--primary);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .story-block,
    .story-block:nth-child(even) {
        flex-direction: column;
    }

    .contact-wrapper {
        flex-direction: column;
    }

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

    .testimonials {
        flex-direction: column;
    }

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
    }
}
