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

:root {
    --color-primary: #1a1a1a;
    --color-secondary: #2d2d2d;
    --color-accent: #b8966e;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f8f8;
    --color-border: #e0e0e0;
    --spacing-xs: 1rem;
    --spacing-sm: 2rem;
    --spacing-md: 4rem;
    --spacing-lg: 6rem;
    --spacing-xl: 8rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.7;
    font-size: 16px;
}

h1, h2, h3, h4 {
    font-weight: 300;
    line-height: 1.2;
    color: var(--color-primary);
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.25rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    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 var(--color-border);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-weight: 400;
}

.nav-links a.active {
    color: var(--color-accent);
}

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

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

.nav-mobile {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--color-bg);
    flex-direction: column;
    padding: 2rem 5%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.nav-mobile a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 1.1rem;
    letter-spacing: 0.03em;
}

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

.hero-minimal {
    margin-top: 80px;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-xl) 5%;
    position: relative;
}

.hero-content {
    max-width: 900px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-text-light);
    font-weight: 300;
    max-width: 600px;
}

.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 35%;
    height: 60%;
    opacity: 0.15;
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 100%);
}

.intro-statement {
    padding: var(--spacing-lg) 5%;
    background: var(--color-bg-alt);
}

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

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

.philosophy-block {
    padding: var(--spacing-xl) 5%;
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.philosophy-item {
    flex: 1 1 300px;
}

.philosophy-visual {
    width: 100%;
    height: 200px;
    background: var(--color-bg-alt);
    margin-bottom: 2rem;
}

.cta-floating {
    padding: var(--spacing-lg) 5%;
    background: var(--color-primary);
    color: var(--color-bg);
    text-align: center;
}

.cta-float-content h2 {
    color: var(--color-bg);
    margin-bottom: 2rem;
}

.btn-primary-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--color-accent);
    color: var(--color-bg);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    opacity: 1;
    background: var(--color-bg);
    color: var(--color-primary);
}

.expertise-showcase {
    padding: var(--spacing-xl) 5%;
}

.expertise-layout {
    display: flex;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.expertise-text {
    flex: 1 1 50%;
}

.expertise-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.expertise-visual-large {
    flex: 1 1 40%;
    height: 500px;
    background: var(--color-bg-alt);
}

.link-arrow {
    display: inline-block;
    margin-top: 1rem;
    font-size: 1.1rem;
    letter-spacing: 0.03em;
    color: var(--color-accent);
}

.link-arrow::after {
    content: ' →';
}

.services-preview {
    padding: var(--spacing-xl) 5%;
    background: var(--color-bg-alt);
}

.services-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

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

.services-grid-minimal {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(50% - 1.5rem);
    background: var(--color-bg);
    padding: 3rem;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

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

.service-card h3 {
    margin-bottom: 1.5rem;
}

.service-card p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.price-display {
    font-size: 2rem;
    font-weight: 300;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.btn-select-service {
    padding: 1rem 2rem;
    background: var(--color-primary);
    color: var(--color-bg);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: 100%;
}

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

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

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

.modal-content {
    background: var(--color-bg);
    padding: 4rem;
    max-width: 600px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--color-text-light);
}

.modal-service-display {
    font-size: 1.2rem;
    color: var(--color-accent);
    margin-bottom: 2rem;
}

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

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 1px solid var(--color-border);
    font-family: inherit;
    font-size: 1rem;
}

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

.btn-submit-form {
    padding: 1.2rem 2rem;
    background: var(--color-primary);
    color: var(--color-bg);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

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

.testimonial-minimal {
    padding: var(--spacing-lg) 5%;
}

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

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

.testimonial-wrapper cite {
    font-size: 1rem;
    color: var(--color-text-light);
    font-style: normal;
    letter-spacing: 0.05em;
}

.location-focus {
    padding: var(--spacing-xl) 5%;
    background: var(--color-bg-alt);
}

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

.location-content h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.location-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.location-item {
    flex: 1 1 calc(50% - 1.5rem);
}

.location-item h4 {
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.trust-indicators {
    padding: var(--spacing-lg) 5%;
    background: var(--color-primary);
}

.trust-wrapper {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.trust-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.final-cta-section {
    padding: var(--spacing-xl) 5%;
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.footer-minimal {
    background: var(--color-secondary);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-lg) 5%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto 3rem;
    gap: 4rem;
}

.footer-brand h3 {
    color: var(--color-bg);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 4rem;
}

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

.footer-column h4 {
    color: var(--color-bg);
    margin-bottom: 1rem;
    font-weight: 400;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-primary);
    color: var(--color-bg);
    padding: 2rem 5%;
    z-index: 1500;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: var(--color-bg);
    color: var(--color-primary);
}

.btn-reject {
    background: transparent;
    color: var(--color-bg);
    border: 1px solid var(--color-bg);
}

.btn-reject:hover {
    background: var(--color-bg);
    color: var(--color-primary);
}

.page-hero-minimal {
    margin-top: 80px;
    padding: var(--spacing-xl) 5%;
    text-align: center;
    background: var(--color-bg-alt);
}

.about-story,
.services-intro,
.contact-intro {
    padding: var(--spacing-lg) 5%;
}

.story-wrapper,
.intro-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.story-content {
    margin-top: 3rem;
}

.story-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.values-section {
    padding: var(--spacing-xl) 5%;
    background: var(--color-bg-alt);
}

.values-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.value-item {
    flex: 1 1 calc(50% - 1.5rem);
}

.team-intro {
    padding: var(--spacing-lg) 5%;
}

.team-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.approach-detail {
    padding: var(--spacing-xl) 5%;
    background: var(--color-bg-alt);
}

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

.approach-content {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.approach-block h3 {
    color: var(--color-accent);
}

.market-knowledge {
    padding: var(--spacing-lg) 5%;
}

.knowledge-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.knowledge-wrapper p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-about {
    padding: var(--spacing-lg) 5%;
    background: var(--color-primary);
    text-align: center;
}

.cta-about-content h2 {
    color: var(--color-bg);
    margin-bottom: 2rem;
}

.services-detailed {
    padding: var(--spacing-lg) 5%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail-card {
    background: var(--color-bg-alt);
    padding: 4rem;
}

.service-detail-content h2 {
    margin-bottom: 1rem;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-accent);
    margin: 1.5rem 0;
}

.service-description {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-includes {
    margin: 2rem 0;
}

.service-includes h4 {
    margin-bottom: 1rem;
    color: var(--color-text);
}

.service-includes ul {
    list-style: none;
    padding-left: 0;
}

.service-includes ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-includes ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-size: 1.5rem;
}

.service-customization {
    padding: var(--spacing-lg) 5%;
    background: var(--color-bg-alt);
}

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

.customization-wrapper p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.contact-details {
    padding: var(--spacing-lg) 5%;
}

.contact-grid {
    display: flex;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info-block {
    flex: 1 1 50%;
}

.contact-detail {
    margin-bottom: 3rem;
}

.contact-detail h4 {
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.contact-detail a {
    color: var(--color-accent);
}

.contact-note {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--color-bg-alt);
}

.contact-visual-block {
    flex: 1 1 40%;
    height: 500px;
    background: var(--color-bg-alt);
}

.location-context,
.confidentiality-note {
    padding: var(--spacing-lg) 5%;
}

.location-wrapper,
.confidentiality-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.confidentiality-note {
    background: var(--color-bg-alt);
}

.confidentiality-wrapper p {
    font-size: 1.05rem;
}

.next-steps {
    padding: var(--spacing-xl) 5%;
}

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

.steps-wrapper h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.step-item {
    flex: 1 1 calc(50% - 1.5rem);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--color-accent);
    color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.cta-contact {
    padding: var(--spacing-lg) 5%;
    background: var(--color-primary);
    text-align: center;
}

.cta-contact-content h2 {
    color: var(--color-bg);
    margin-bottom: 2rem;
}

.thanks-hero {
    margin-top: 80px;
    padding: var(--spacing-xl) 5%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-message {
    font-size: 1.3rem;
    color: var(--color-text-light);
    margin-bottom: 3rem;
}

.thanks-details {
    background: var(--color-bg-alt);
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.submission-info p {
    margin-bottom: 0.75rem;
}

.thanks-next {
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-next h3 {
    margin-bottom: 1rem;
}

.thanks-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.btn-primary {
    padding: 1rem 2rem;
    background: var(--color-primary);
    color: var(--color-bg);
    font-size: 1rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--color-accent);
    opacity: 1;
}

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    font-size: 1rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-bg);
    opacity: 1;
}

.thanks-additional {
    padding: var(--spacing-lg) 5%;
    background: var(--color-bg-alt);
}

.additional-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.additional-links {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.link-card {
    flex: 1;
    padding: 3rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.link-card h4 {
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.legal-page {
    margin-top: 80px;
    padding: var(--spacing-lg) 5%;
}

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

.legal-container h1 {
    margin-bottom: 0.5rem;
}

.legal-updated {
    color: var(--color-text-light);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-container h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.legal-container h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-container ul,
.legal-container ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-container li {
    margin-bottom: 0.75rem;
}

.legal-container a {
    color: var(--color-accent);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--color-border);
}

.cookie-table th {
    background: var(--color-bg-alt);
    font-weight: 500;
}

@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .expertise-layout {
        flex-direction: column;
    }

    .hero-visual {
        display: none;
    }

    .contact-grid {
        flex-direction: column;
        gap: 3rem;
    }

    .trust-wrapper {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 4rem;
        --spacing-xl: 5rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .service-card,
    .location-item,
    .value-item,
    .step-item {
        flex: 1 1 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .thanks-actions,
    .additional-links {
        flex-direction: column;
    }

    .modal-content {
        padding: 2rem;
    }

    .service-detail-card {
        padding: 2rem;
    }
}