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

:root {
    --color-primary: #1a1a2e;
    --color-secondary: #2d3561;
    --color-accent: #8b7355;
    --color-text: #2a2a2a;
    --color-text-light: #6a6a6a;
    --color-bg: #ffffff;
    --color-bg-light: #f8f8f8;
    --color-border: #e0e0e0;
    --spacing-unit: 1rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
}

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

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

.minimal-nav {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

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

.ad-disclosure {
    font-size: 0.8rem;
    color: var(--color-text-light);
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
}

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

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e8e8e8;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
}

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

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 300;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.95;
}

.section-spacious {
    padding: 8rem 0;
}

.centered-heading {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.large-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--color-text-light);
    font-weight: 300;
}

.offset-section {
    padding: 6rem 0;
    background: var(--color-bg-light);
}

.offset-grid {
    display: flex;
    gap: 6rem;
    align-items: center;
}

.offset-content {
    flex: 1;
}

.offset-content h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.offset-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.offset-image {
    flex: 1;
    background-color: #d0d0d0;
}

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

.services-preview {
    padding: 8rem 0;
}

.services-preview h2 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 4rem;
}

.service-cards-minimal {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.service-card {
    padding: 3rem;
    border: 1px solid var(--color-border);
    transition: border-color 0.3s;
}

.service-card:hover {
    border-color: var(--color-accent);
}

.service-card h4 {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

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

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--color-primary);
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

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

.btn-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--color-primary);
    text-decoration: none;
    font-size: 1rem;
    border: 1px solid var(--color-primary);
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--color-primary);
    color: #ffffff;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--color-text);
    text-decoration: none;
    font-size: 1rem;
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-text-link {
    color: var(--color-accent);
    text-decoration: none;
    font-size: 1rem;
    border-bottom: 1px solid var(--color-accent);
    transition: opacity 0.3s;
}

.btn-text-link:hover {
    opacity: 0.7;
}

.cta-centered {
    text-align: center;
    margin-top: 2rem;
}

.form-section {
    padding: 8rem 0;
    background: var(--color-bg-light);
}

.form-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.form-section > .container-narrow > p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 3rem;
}

.minimal-form {
    max-width: 600px;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    color: var(--color-text);
}

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

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

.form-notice {
    padding: 1rem;
    background: #fff3cd;
    color: #856404;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    border-left: 3px solid var(--color-accent);
}

.form-notice.hidden {
    display: none;
}

.form-notice.success {
    background: #d4edda;
    color: #155724;
    border-left-color: #28a745;
}

.trust-section {
    padding: 8rem 0;
}

.trust-content {
    border-left: 3px solid var(--color-accent);
    padding-left: 3rem;
}

.trust-statement {
    font-size: 1.5rem;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 2rem;
}

.trust-detail {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

.minimal-footer {
    background: var(--color-primary);
    color: #ffffff;
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h5 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
}

.footer-bottom {
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-primary);
    color: #ffffff;
    padding: 2rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.page-header-minimal {
    padding: 6rem 0 4rem;
}

.page-header-minimal h1 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.split-layout {
    display: flex;
    gap: 5rem;
    align-items: center;
}

.split-image {
    flex: 1;
    background-color: #d0d0d0;
}

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.split-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.principles-section {
    padding: 6rem 0;
}

.principles-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.principle-block {
    margin-bottom: 3.5rem;
}

.principle-block h3 {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.principle-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

.experience-section,
.values-section {
    padding: 6rem 0;
    background: var(--color-bg-light);
}

.experience-section h2,
.values-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.experience-section p,
.values-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.cta-section-minimal {
    padding: 6rem 0;
    text-align: center;
}

.cta-section-minimal h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta-section-minimal p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.services-detailed {
    padding: 4rem 0 6rem;
}

.service-detail {
    margin-bottom: 5rem;
}

.service-header {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.service-visual {
    flex: 1;
    background-color: #d0d0d0;
}

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

.service-intro {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-intro h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 300;
    color: var(--color-accent);
}

.service-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.service-description button {
    margin-top: 1rem;
}

.contact-info-section {
    padding: 4rem 0;
}

.contact-grid {
    display: flex;
    gap: 4rem;
}

.contact-block {
    flex: 1;
}

.contact-block h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

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

.contact-note {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-style: italic;
}

.location-section {
    padding: 4rem 0;
    background: var(--color-bg-light);
}

.location-section h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.location-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 1.2rem;
}

.thanks-section {
    padding: 8rem 0;
}

.thanks-content h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.next-steps {
    margin: 3rem 0;
}

.next-steps h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.steps-list {
    padding-left: 1.5rem;
}

.steps-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.thanks-note {
    background: var(--color-bg-light);
    padding: 2rem;
    margin: 2rem 0;
}

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

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
}

.legal-page {
    padding: 4rem 0 6rem;
}

.legal-intro {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 3rem;
}

.legal-page h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.legal-page h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-page p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 1.2rem;
}

.legal-page ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-page ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 0.8rem;
}

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

.cookie-control-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

@media (max-width: 968px) {
    .container-wide {
        padding: 0 2rem;
    }

    .container-narrow {
        padding: 0 1.5rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

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

    .centered-heading {
        font-size: 2.2rem;
    }

    .offset-grid,
    .split-layout,
    .contact-grid,
    .service-header {
        flex-direction: column;
    }

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

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

    .nav-links {
        gap: 1.5rem;
    }

    .section-spacious {
        padding: 5rem 0;
    }

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