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

:root {
    --primary-dark: #1a1a1a;
    --primary-light: #f8f8f8;
    --accent-gold: #c9a961;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --border-subtle: #e0e0e0;
    --overlay-dark: rgba(0, 0, 0, 0.6);
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--primary-light);
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.floating-nav {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-brand {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-dark);
    transition: all 0.3s ease;
}

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

.hero-image-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
}

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

.hero-overlay-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-overlay-content::before {
    content: '';
    position: absolute;
    inset: -3rem;
    background: var(--overlay-dark);
    z-index: -1;
    border-radius: 20px;
}

.hero-title-large {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 400;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-hero-primary {
    display: inline-block;
    background: var(--accent-gold);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-hero-primary:hover {
    background: #b89751;
    transform: translateY(-2px);
}

.story-narrow {
    padding: var(--spacing-xl) 2rem;
    background: white;
}

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

.lead-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.story-container p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.visual-split-section {
    display: flex;
    min-height: 600px;
}

.split-image {
    flex: 1;
    overflow: hidden;
}

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

.split-content {
    flex: 1;
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--primary-light);
}

.split-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.split-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.cta-inline-link {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.cta-inline-link:hover {
    transform: translateX(5px);
}

.testimonial-image-card {
    display: flex;
    margin: var(--spacing-xl) auto;
    max-width: 1200px;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-visual {
    flex: 1.2;
}

.testimonial-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    flex: 1;
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-text blockquote {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.testimonial-text cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 0.95rem;
}

.insight-section-offset {
    display: flex;
    gap: 3rem;
    padding: var(--spacing-xl) 2rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.insight-content-box {
    flex: 1;
    padding: 2rem;
}

.insight-content-box h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.insight-content-box p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.insight-visual-block {
    flex: 1;
    height: 500px;
}

.insight-visual-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.services-preview-cards {
    padding: var(--spacing-xl) 2rem;
    background: var(--primary-light);
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-centered h2 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

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

.cards-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image {
    height: 250px;
    overflow: hidden;
}

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

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

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.card-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.price-tag {
    font-size: 1.3rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin: 1.5rem 0;
}

.btn-select-service {
    width: 100%;
    background: var(--primary-dark);
    color: white;
    padding: 0.9rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 5px;
    transition: background 0.3s ease;
}

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

.trust-section-layered {
    position: relative;
    padding: var(--spacing-xl) 2rem;
    background: var(--primary-dark);
    color: white;
}

.trust-background-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, transparent 100%);
    z-index: 1;
}

.trust-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    text-align: center;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.trust-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.trust-item p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.cta-sticky-trigger {
    padding: var(--spacing-xl) 2rem;
    background: white;
}

.cta-box-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
    border-radius: 10px;
}

.cta-box-centered h2 {
    font-size: 2.3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.cta-box-centered p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.btn-cta-large {
    background: var(--accent-gold);
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background: #b89751;
    transform: translateY(-2px);
}

.faq-offset-layout {
    padding: var(--spacing-xl) 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: var(--primary-dark);
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    padding: 1.5rem;
    background: white;
    border-left: 4px solid var(--accent-gold);
    border-radius: 5px;
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
}

.faq-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.form-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.form-modal.active {
    display: flex;
}

.form-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.form-modal-content {
    position: relative;
    z-index: 2001;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.form-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: var(--text-light);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.form-close:hover {
    background: var(--primary-light);
}

.form-modal-content h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.form-intro {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid var(--border-subtle);
    border-radius: 5px;
    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-gold);
}

.form-group input[readonly] {
    background: var(--primary-light);
    color: var(--text-light);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.checkbox-label input {
    margin-top: 0.2rem;
}

.checkbox-label a {
    color: var(--accent-gold);
    text-decoration: underline;
}

.btn-submit-form {
    background: var(--accent-gold);
    color: white;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn-submit-form:hover {
    background: #b89751;
}

.sticky-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--primary-dark);
    color: white;
    padding: 1.2rem 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transition: bottom 0.4s ease;
}

.sticky-cta.visible {
    bottom: 0;
}

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

.sticky-cta-text {
    font-size: 1.2rem;
    font-weight: 500;
}

.btn-sticky {
    background: var(--accent-gold);
    color: white;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: background 0.3s ease;
}

.btn-sticky:hover {
    background: #b89751;
}

.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    z-index: 3000;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    display: none;
}

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

.cookie-content p {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept,
.btn-cookie-reject {
    flex: 1;
    padding: 0.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

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

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

.btn-cookie-reject {
    background: var(--primary-light);
    color: var(--text-dark);
}

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

.footer-layered {
    background: var(--primary-dark);
    color: white;
    padding: var(--spacing-xl) 2rem 2rem;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

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

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

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.8;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-col a {
    font-size: 0.95rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.thanks-box {
    max-width: 700px;
    text-align: center;
    background: white;
    padding: 4rem 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    font-size: 4rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.thanks-box h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.thanks-box p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.selected-service-display {
    background: var(--primary-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.selected-service-display p {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.btn-back-home {
    display: inline-block;
    background: var(--accent-gold);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.btn-back-home:hover {
    background: #b89751;
    transform: translateY(-2px);
}

@media (max-width: 968px) {
    .floating-nav {
        width: 95%;
        padding: 1rem 1.5rem;
    }

    .nav-menu {
        position: fixed;
        top: 6rem;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 400px;
        background: white;
        flex-direction: column;
        padding: 2rem;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        gap: 1rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .nav-menu.active {
        opacity: 1;
        pointer-events: all;
    }

    .nav-toggle {
        display: flex;
    }

    .visual-split-section {
        flex-direction: column;
    }

    .testimonial-image-card {
        flex-direction: column;
    }

    .insight-section-offset {
        flex-direction: column;
    }

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

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

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

    .sticky-cta-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-main {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .hero-title-large {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-header-centered h2 {
        font-size: 2rem;
    }

    .form-modal-content {
        padding: 2rem 1.5rem;
    }

    .cookie-banner {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }
}