* {
    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.6;
    color: #2a2a2a;
    background: #ffffff;
}

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

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

a:hover {
    opacity: 0.7;
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.brand-logo {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    font-size: 15px;
    color: #4a4a4a;
    font-weight: 400;
}

.ad-disclosure {
    font-size: 12px;
    color: #888;
    padding: 4px 12px;
    background: #f5f5f5;
    border-radius: 3px;
}

.hero-visual {
    margin-top: 80px;
    position: relative;
    height: 85vh;
    min-height: 600px;
}

.hero-image-wrap {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background-color: #2a2a2a;
}

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

.hero-overlay {
    position: absolute;
    bottom: 80px;
    left: 60px;
    max-width: 600px;
    color: #ffffff;
    z-index: 10;
}

.hero-overlay h1 {
    font-size: 64px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-overlay p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
    opacity: 0.95;
}

.intro-minimal {
    padding: 120px 20px;
    text-align: center;
}

.intro-minimal h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.intro-minimal p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.visual-story {
    padding: 80px 20px;
    background: #fafafa;
}

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

.story-image {
    flex: 1;
    background-color: #e0e0e0;
}

.story-image img {
    width: 100%;
    height: 500px;
}

.story-text {
    flex: 1;
}

.story-text h3 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.story-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 18px;
}

.insight-reveal {
    padding: 100px 20px;
}

.insight-reveal .container-wide {
    display: flex;
    gap: 80px;
    align-items: center;
}

.insight-content {
    flex: 1.2;
}

.insight-content h2 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.insight-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.insight-visual {
    flex: 1;
    background-color: #e0e0e0;
}

.insight-visual img {
    width: 100%;
    height: 480px;
}

.services-showcase {
    padding: 100px 20px;
    background: #1a1a1a;
    color: #ffffff;
}

.services-showcase h2 {
    font-size: 44px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 70px;
}

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

.service-card {
    background: #2a2a2a;
    width: calc(33.333% - 20px);
    min-width: 320px;
    padding: 0;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #3a3a3a;
}

.service-image-wrap img {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 400;
    margin: 25px 25px 15px;
    color: #ffffff;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #b0b0b0;
    margin: 0 25px 20px;
}

.service-card .price {
    display: block;
    font-size: 28px;
    font-weight: 500;
    color: #d4af37;
    margin: 20px 25px 25px;
}

.btn-select-service {
    width: calc(100% - 50px);
    margin: 0 25px 30px;
    padding: 14px 0;
    background: #ffffff;
    color: #1a1a1a;
    border: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.btn-select-service:hover {
    background: #d4af37;
    color: #ffffff;
}

.testimonials-inline {
    padding: 100px 20px;
    background: #f5f5f5;
}

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

.testimonial-item p {
    font-size: 20px;
    line-height: 1.7;
    font-style: italic;
    color: #2a2a2a;
    margin-bottom: 15px;
}

.testimonial-item cite {
    font-size: 15px;
    color: #666;
    font-style: normal;
}

.form-section {
    padding: 100px 20px;
}

.form-visual-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-image {
    flex: 1;
    background-color: #e0e0e0;
}

.form-image img {
    width: 100%;
    height: 600px;
}

.form-container {
    flex: 1;
}

.form-container h2 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #1a1a1a;
}

#selected-service-display {
    font-size: 16px;
    color: #d4af37;
    margin-bottom: 30px;
    font-weight: 500;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #2a2a2a;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 16px 40px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    align-self: flex-start;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #d4af37;
}

.trust-signals {
    padding: 80px 20px;
    background: #2a2a2a;
    color: #ffffff;
}

.trust-grid {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    flex: 1;
}

.trust-item h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #d4af37;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #c0c0c0;
}

.main-footer {
    background: #1a1a1a;
    color: #b0b0b0;
    padding: 60px 20px 30px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    font-size: 14px;
    color: #b0b0b0;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background: #2a2a2a;
    border-left: 3px solid #d4af37;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #3a3a3a;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: #ffffff;
    padding: 25px;
    z-index: 2000;
    display: none;
    border-top: 1px solid #3a3a3a;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: #d0d0d0;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 25px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-cookie-accept {
    background: #d4af37;
    color: #1a1a1a;
}

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

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

.btn-cookie-reject:hover {
    background: #3a3a3a;
}

.page-hero-small {
    margin-top: 80px;
    padding: 80px 20px 60px;
    background: #fafafa;
    text-align: center;
}

.page-hero-small h1 {
    font-size: 48px;
    font-weight: 300;
    color: #1a1a1a;
}

.page-hero-small p {
    font-size: 18px;
    color: #666;
    margin-top: 15px;
}

.about-story {
    padding: 100px 20px;
}

.story-layout {
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.story-image-large {
    flex: 1;
    background-color: #e0e0e0;
}

.story-image-large img {
    width: 100%;
    height: 550px;
}

.story-narrative {
    flex: 1;
}

.story-narrative h2 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.story-narrative p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.philosophy-section {
    padding: 80px 20px;
    background: #f5f5f5;
}

.philosophy-section h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 30px;
    text-align: center;
    color: #1a1a1a;
}

.philosophy-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.expertise-visual {
    padding: 100px 20px;
}

.expertise-visual h2 {
    font-size: 42px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.expertise-card {
    flex: 1;
}

.expertise-card img {
    width: 100%;
    height: 280px;
    margin-bottom: 20px;
    background-color: #e0e0e0;
}

.expertise-card h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.expertise-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.process-breakdown {
    padding: 80px 20px;
    background: #1a1a1a;
    color: #ffffff;
}

.process-breakdown h2 {
    font-size: 42px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 60px;
}

.process-steps {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    font-size: 32px;
    font-weight: 200;
    color: #d4af37;
    min-width: 60px;
}

.process-step h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 16px;
    line-height: 1.7;
    color: #b0b0b0;
}

.cta-about {
    padding: 80px 20px;
    text-align: center;
}

.cta-about h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-about p {
    font-size: 17px;
    color: #666;
    margin-bottom: 35px;
}

.btn-cta {
    display: inline-block;
    padding: 16px 45px;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn-cta:hover {
    background: #d4af37;
    opacity: 1;
}

.services-detailed {
    padding: 80px 20px;
}

.service-detail-block {
    max-width: 1200px;
    margin: 0 auto 100px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-detail-block.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-price {
    font-size: 24px;
    font-weight: 500;
    color: #d4af37;
    margin-bottom: 25px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 18px;
}

.service-detail-image {
    flex: 1;
    background-color: #e0e0e0;
}

.service-detail-image img {
    width: 100%;
    height: 380px;
}

.btn-service {
    display: inline-block;
    margin-top: 10px;
    padding: 14px 35px;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn-service:hover {
    background: #d4af37;
    opacity: 1;
}

.service-faq {
    padding: 80px 20px;
    background: #f5f5f5;
}

.service-faq h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

.faq-item {
    margin-bottom: 35px;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
}

.contact-info-section {
    padding: 80px 20px;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.contact-item h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.no-link {
    color: #4a4a4a;
    cursor: default;
}

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background: #f5f5f5;
    border-left: 3px solid #d4af37;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.contact-image {
    flex: 1;
    background-color: #e0e0e0;
}

.contact-image img {
    width: 100%;
    height: 500px;
}

.location-info {
    padding: 80px 20px;
    background: #f5f5f5;
}

.location-info h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 25px;
    text-align: center;
    color: #1a1a1a;
}

.location-info p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.thanks-section {
    margin-top: 80px;
    padding: 120px 20px;
    min-height: 60vh;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

#service-confirmation {
    font-size: 18px;
    color: #d4af37;
    font-weight: 500;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 45px;
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #1a1a1a;
    color: #ffffff;
    opacity: 1;
}

.legal-page {
    margin-top: 80px;
    padding: 80px 20px;
}

.legal-updated {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 500;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2a2a2a;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 18px;
}

.legal-page ul {
    margin: 15px 0 20px 25px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.legal-page strong {
    font-weight: 600;
    color: #2a2a2a;
}

.cookies-table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #d0d0d0;
}

.cookies-table th {
    background: #f5f5f5;
    font-weight: 600;
    color: #1a1a1a;
}

.cookies-table td {
    font-size: 15px;
    color: #4a4a4a;
}

@media (max-width: 968px) {
    .hero-overlay h1 {
        font-size: 48px;
    }

    .story-block,
    .insight-reveal .container-wide,
    .form-visual-split,
    .story-layout,
    .contact-layout {
        flex-direction: column;
    }

    .service-card {
        width: calc(50% - 15px);
    }

    .trust-grid,
    .expertise-grid {
        flex-direction: column;
    }

    .nav-links {
        gap: 20px;
    }

    .ad-disclosure {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero-overlay {
        left: 30px;
        right: 30px;
        bottom: 40px;
    }

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

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

    .service-card {
        width: 100%;
    }

    .nav-container {
        padding: 15px 20px;
    }

    .brand-logo {
        font-size: 20px;
    }

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

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

    .thanks-actions {
        flex-direction: column;
    }
}