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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background: #ffffff;
}

.ad-notice {
    background: #f4f1eb;
    color: #6b5d4f;
    text-align: center;
    padding: 8px 12px;
    font-size: 13px;
    border-bottom: 1px solid #d9d3c8;
}

.floating-nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    padding: 18px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e8e3d9;
    z-index: 100;
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #3d2f1f;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: #5a4a3a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #8b6f47;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    background-color: #2c2418;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    width: 90%;
    max-width: 780px;
}

.hero-overlay h1 {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -1.2px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-overlay p {
    font-size: 21px;
    line-height: 1.5;
    opacity: 0.95;
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.story-intro {
    padding: 120px 5% 80px;
    background: #faf8f3;
}

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

.lead-text {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 32px;
    color: #3d2f1f;
    line-height: 1.3;
}

.story-intro p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.image-break {
    width: 100%;
    height: 60vh;
    overflow: hidden;
    background-color: #1a1410;
}

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

.insight-block {
    padding: 100px 5%;
    background: #ffffff;
}

.wide-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.insight-left {
    flex: 1;
}

.insight-left h2 {
    font-size: 42px;
    margin-bottom: 28px;
    color: #3d2f1f;
    line-height: 1.2;
    font-weight: 700;
}

.insight-left p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #5a5a5a;
}

.insight-right {
    flex: 1;
    background-color: #2a2218;
}

.insight-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.trust-layer {
    padding: 90px 5%;
    background: #f4ede3;
}

.trust-layer h3 {
    font-size: 34px;
    margin-bottom: 36px;
    color: #3d2f1f;
    text-align: center;
    font-weight: 600;
}

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

.benefit-list li {
    font-size: 18px;
    padding: 18px 0;
    border-bottom: 1px solid #d9cdb9;
    color: #4a4a4a;
    padding-left: 32px;
    position: relative;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8b6f47;
    font-weight: bold;
    font-size: 20px;
}

.testimonial-inline {
    padding: 80px 5%;
    background: #3d2f1f;
}

.testimonial-card {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-text {
    font-size: 26px;
    color: #f4ede3;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.5;
}

.testimonial-author {
    font-size: 16px;
    color: #b39872;
}

.offering-reveal {
    padding: 110px 5%;
    background: #ffffff;
}

.centered-content {
    max-width: 840px;
    margin: 0 auto 70px;
    text-align: center;
}

.centered-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #3d2f1f;
    font-weight: 700;
}

.section-intro {
    font-size: 19px;
    color: #5a5a5a;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    justify-content: center;
}

.service-item {
    flex: 0 0 calc(33.333% - 30px);
    background: #faf8f3;
    border: 1px solid #e8e3d9;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-4px);
}

.service-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    background-color: #2a2218;
}

.service-item h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: #3d2f1f;
    font-weight: 600;
}

.service-item p {
    font-size: 16px;
    margin: 0 24px 16px;
    color: #5a5a5a;
    line-height: 1.6;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #8b6f47;
    margin: 20px 24px;
}

.select-service-btn {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px 20px;
    background: #3d2f1f;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service-btn:hover {
    background: #5a4a3a;
}

.select-service-btn:active {
    background: #2c2118;
}

.form-section {
    padding: 100px 5%;
    background: #f4ede3;
}

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

.form-container h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #3d2f1f;
    font-weight: 700;
    text-align: center;
}

.form-intro {
    font-size: 17px;
    color: #5a5a5a;
    text-align: center;
    margin-bottom: 48px;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    margin-bottom: 8px;
    color: #3d2f1f;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #d9cdb9;
    background: #ffffff;
    color: #2c2c2c;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b6f47;
}

.form-group input[readonly] {
    background: #f9f6f0;
    color: #8a8a8a;
}

.submit-btn {
    width: 100%;
    padding: 18px 24px;
    background: #3d2f1f;
    color: #ffffff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 12px;
}

.submit-btn:hover {
    background: #5a4a3a;
}

.submit-btn:active {
    background: #2c2118;
}

.final-push {
    padding: 90px 5%;
    background: #3d2f1f;
}

.centered-text {
    text-align: center;
}

.final-push h3 {
    font-size: 36px;
    color: #f4ede3;
    margin-bottom: 20px;
    font-weight: 600;
}

.final-push p {
    font-size: 19px;
    color: #d9cdb9;
    margin-bottom: 32px;
}

.cta-link {
    display: inline-block;
    padding: 16px 40px;
    background: #8b6f47;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-link:hover {
    background: #a58456;
}

.cta-link:active {
    background: #6d5737;
}

.disclaimer-section {
    padding: 60px 5%;
    background: #faf8f3;
}

.disclaimer-text {
    font-size: 14px;
    color: #7a7a7a;
    line-height: 1.7;
    text-align: center;
}

.main-footer {
    background: #2c2118;
    color: #d9cdb9;
    padding: 60px 5% 30px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #f4ede3;
    font-weight: 600;
}

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

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

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

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

.footer-col ul li a:hover {
    color: #f4ede3;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #3d2f1f;
}

.footer-bottom p {
    font-size: 14px;
    color: #8a7a65;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(61, 47, 31, 0.97);
    backdrop-filter: blur(6px);
    padding: 24px 5%;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    font-size: 15px;
    color: #f4ede3;
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #b39872;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-btn.accept {
    background: #8b6f47;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: #a58456;
}

.cookie-btn.reject {
    background: transparent;
    color: #d9cdb9;
    border: 1px solid #5a4a3a;
}

.cookie-btn.reject:hover {
    background: #5a4a3a;
}

@media (max-width: 968px) {
    .nav-links {
        gap: 20px;
    }

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

    .hero-overlay p {
        font-size: 18px;
    }

    .wide-content {
        flex-direction: column;
    }

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

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

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

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

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
    background: #faf8f3;
}

.thanks-container {
    max-width: 680px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 52px;
    color: #3d2f1f;
    margin-bottom: 24px;
    font-weight: 700;
}

.thanks-container p {
    font-size: 19px;
    color: #5a5a5a;
    margin-bottom: 18px;
    line-height: 1.6;
}

.thanks-service {
    background: #ffffff;
    padding: 24px;
    margin: 32px 0;
    border: 1px solid #e8e3d9;
}

.thanks-service strong {
    color: #3d2f1f;
    font-size: 20px;
}

.back-link {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 36px;
    background: #3d2f1f;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
}

.back-link:hover {
    background: #5a4a3a;
}

.page-content {
    padding: 80px 5%;
    min-height: 60vh;
}

.page-content h1 {
    font-size: 48px;
    color: #3d2f1f;
    margin-bottom: 32px;
    font-weight: 700;
}

.page-content h2 {
    font-size: 32px;
    color: #3d2f1f;
    margin-top: 48px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-content h3 {
    font-size: 24px;
    color: #3d2f1f;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
}

.page-content p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 16px;
    line-height: 1.7;
}

.page-content ul,
.page-content ol {
    margin-left: 24px;
    margin-bottom: 20px;
}

.page-content li {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 10px;
    line-height: 1.6;
}

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

.contact-info {
    background: #f4ede3;
    padding: 32px;
    margin: 32px 0;
    border-left: 4px solid #8b6f47;
}

.contact-info p {
    margin-bottom: 12px;
}

.contact-info strong {
    color: #3d2f1f;
}