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

:root {
    --primary: #2c1810;
    --accent: #8b6f47;
    --light: #f4f1ed;
    --dark: #1a1410;
    --text: #333;
    --border: #d4c5b9;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

.btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-reject:hover {
    background: rgba(255,255,255,0.1);
}

.main-nav {
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

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

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

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

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

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

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

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

.nav-menu li a {
    color: var(--text);
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.hero-intro {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b6f47 0%, #5a4a3a 100%);
    z-index: 0;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 40px;
    max-width: 900px;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: normal;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.3);
}

.hero-tagline {
    font-size: 1.3rem;
    font-style: italic;
    opacity: 0.95;
    margin-top: 20px;
}

.story-hook {
    padding: 100px 20px;
    background: #fff;
}

.narrow-content {
    max-width: 700px;
    margin: 0 auto;
}

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

.opening-line {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 35px;
}

.image-reveal {
    display: flex;
    align-items: center;
    min-height: 600px;
    background: var(--light);
}

.reveal-img {
    flex: 1;
    min-height: 600px;
    background: linear-gradient(45deg, #5a4a3a 0%, #8b6f47 100%);
}

.reveal-text {
    flex: 1;
    padding: 60px;
}

.reveal-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--primary);
    font-weight: normal;
}

.reveal-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.cta-inline {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent);
    color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

.problem-section {
    padding: 100px 20px;
    background: #fff;
}

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

.content-wrapper h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary);
    font-weight: normal;
}

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

.problem-item {
    flex: 1;
    min-width: 250px;
    padding: 35px;
    background: var(--light);
    border-left: 4px solid var(--accent);
}

.problem-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.problem-item p {
    line-height: 1.7;
}

.testimonial-inline {
    padding: 80px 20px;
    background: var(--dark);
    color: #fff;
    text-align: center;
}

.testimonial-inline blockquote {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.7;
    position: relative;
}

.testimonial-inline cite {
    display: block;
    margin-top: 25px;
    font-size: 1rem;
    font-style: normal;
    opacity: 0.8;
}

.value-reveal {
    background: var(--light);
}

.split-layout {
    display: flex;
    min-height: 700px;
}

.split-text,
.split-image {
    flex: 1;
}

.split-text {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
    color: var(--primary);
    font-weight: normal;
}

.benefit-list {
    list-style: none;
    margin-bottom: 40px;
}

.benefit-list li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.3rem;
}

.split-image {
    background: linear-gradient(225deg, #8b6f47 0%, #5a4a3a 100%);
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary);
    color: #fff;
    border-radius: 3px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.curation-story {
    padding: 100px 20px;
    background: #fff;
}

.curation-story h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.curation-story p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.social-proof {
    padding: 100px 20px;
    background: var(--light);
}

.social-proof h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary);
    font-weight: normal;
}

.testimonials-grid {
    display: flex;
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

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

.testimonial-card cite {
    font-style: normal;
    font-weight: bold;
    color: var(--accent);
}

.services-preview {
    padding: 100px 20px;
    background: #fff;
}

.services-preview h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: normal;
}

.services-intro {
    text-align: center;
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 60px;
    color: var(--text);
}

.services-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    background: var(--light);
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-img {
    height: 250px;
    background: linear-gradient(135deg, #8b6f47 0%, #5a4a3a 100%);
}

.service-card h3 {
    padding: 25px 25px 15px;
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: normal;
}

.service-card p {
    padding: 0 25px 15px;
    line-height: 1.6;
    font-size: 0.98rem;
}

.service-price {
    padding: 10px 25px;
    font-weight: bold;
    color: var(--accent);
    font-size: 1.1rem;
}

.select-service {
    margin: 20px 25px 25px;
    width: calc(100% - 50px);
    padding: 14px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: var(--accent);
}

.urgency-section {
    padding: 80px 20px;
    background: var(--dark);
    color: #fff;
}

.urgency-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.urgency-box h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: normal;
}

.urgency-box p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.contact-form-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: normal;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 50px;
}

.main-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 45px;
    border-radius: 5px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.08);
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-cta {
    padding: 120px 20px;
    background: var(--accent);
    color: #fff;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-weight: normal;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    display: inline-block;
    padding: 20px 50px;
    background: #fff;
    color: var(--primary);
    border-radius: 3px;
    font-size: 1.15rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.main-footer {
    background: var(--dark);
    color: #fff;
    padding: 60px 20px 20px;
}

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

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

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

.footer-col p {
    line-height: 1.6;
    opacity: 0.85;
}

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

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

.footer-col ul li a {
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
}

.sticky-cta {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    padding: 15px 30px;
    background: var(--accent);
    color: #fff;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    font-weight: bold;
}

.sticky-cta a:hover {
    background: var(--primary);
    transform: scale(1.05);
}

.page-hero {
    padding: 100px 20px 80px;
    background: var(--primary);
    color: #fff;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: normal;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-content {
    padding: 100px 20px;
    background: #fff;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    margin-top: 50px;
    color: var(--primary);
}

.about-content h2:first-of-type {
    margin-top: 0;
}

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

.values-section {
    padding: 100px 20px;
    background: var(--light);
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary);
    font-weight: normal;
}

.values-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: #fff;
    border-radius: 5px;
    text-align: center;
}

.value-item h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.value-item p {
    line-height: 1.7;
}

.services-full {
    padding: 60px 20px 100px;
    background: #fff;
}

.service-detailed {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 80px;
    align-items: center;
}

.service-detailed.reverse {
    flex-direction: row-reverse;
}

.service-img-large {
    flex: 1;
    min-height: 400px;
    background: linear-gradient(135deg, #8b6f47 0%, #5a4a3a 100%);
    border-radius: 5px;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: normal;
}

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

.price-display {
    font-weight: bold;
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 25px;
}

.cta-services {
    padding: 80px 20px;
    background: var(--light);
    text-align: center;
}

.cta-services h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: normal;
}

.cta-services p {
    font-size: 1.1rem;
    margin-bottom: 35px;
}

.contact-info {
    padding: 80px 20px;
    background: #fff;
}

.info-grid {
    display: flex;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.info-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.info-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.info-item p {
    line-height: 1.7;
}

.info-item a {
    color: var(--primary);
    text-decoration: underline;
}

.thanks-section {
    padding: 150px 20px;
    background: var(--light);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--accent);
    font-weight: bold;
}

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

.thanks-content .btn-primary {
    margin-top: 40px;
}

.legal-page {
    padding: 60px 20px 100px;
    background: #fff;
}

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

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

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

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--accent);
}

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

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

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

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--border);
        padding: 15px 0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .image-reveal,
    .split-layout,
    .service-detailed {
        flex-direction: column;
    }

    .service-detailed.reverse {
        flex-direction: column;
    }

    .split-text,
    .reveal-text {
        padding: 40px 20px;
    }

    .problem-grid,
    .testimonials-grid,
    .values-grid,
    .info-grid {
        flex-direction: column;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

    .sticky-cta a {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

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

@media (min-width: 769px) and (max-width: 1024px) {
    .service-card {
        flex: 1 1 calc(50% - 20px);
    }

    .hero-overlay h1 {
        font-size: 2.8rem;
    }
}
