/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #fafafa;
    overflow-x: hidden;
}

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

a:hover {
    opacity: 0.7;
}

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

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

ul {
    list-style: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #e0e0e0;
}

.btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Navigation - Minimal Style */
.minimal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    background: #fafafa;
}

.nav-brand {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: lowercase;
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.nav-links a.active {
    font-weight: 500;
}

.nav-links a:hover {
    opacity: 0.6;
}

/* Hero Section - Minimal Premium */
.hero-minimal {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 5%;
    background: #fff;
}

.hero-content-wide {
    max-width: 1000px;
    text-align: center;
}

.display-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 2rem;
}

.lead-text {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 300;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Spacer Sections */
.spacer-section {
    height: 12rem;
}

.spacer-small {
    height: 6rem;
}

/* Intro Statement */
.intro-statement {
    padding: 8rem 5%;
    background: #f5f5f5;
}

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

.large-quote {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 300;
    line-height: 1.5;
    color: #333;
}

/* Visual Break */
.visual-break {
    padding: 6rem 5%;
}

.offset-image-block {
    max-width: 1100px;
    margin: 0 auto;
}

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

/* Content Sections */
.philosophy-section {
    padding: 8rem 5%;
    background: #fff;
}

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

.content-medium {
    max-width: 900px;
    margin: 0 auto;
}

.section-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 2.5rem;
    letter-spacing: -1px;
}

.text-block {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.text-link {
    display: inline-block;
    margin-top: 2rem;
    font-size: 1rem;
    font-weight: 500;
    transition: transform 0.3s ease;
}

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

.text-link-large {
    font-size: 1.2rem;
    font-weight: 500;
    display: inline-block;
    margin-top: 2rem;
}

/* Services Section */
.services-intro {
    padding: 8rem 5%;
    background: #f5f5f5;
}

.services-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-highlight {
    padding: 3rem;
    background: #fff;
    transition: transform 0.3s ease;
}

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

.service-number {
    font-size: 0.85rem;
    font-weight: 600;
    color: #999;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.service-highlight h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.service-highlight p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.price-tag {
    font-size: 1.3rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.cta-inline {
    padding: 0.8rem 2rem;
    background: #1a1a1a;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.3s ease;
}

.cta-inline:hover {
    background: #333;
}

/* Principle Section */
.principle-section {
    padding: 8rem 5%;
    background: #fff;
}

.principle-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.principle-item {
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
}

.principle-item h4 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.principle-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

/* Testimonial Section */
.testimonial-section {
    padding: 10rem 5%;
    background: #1a1a1a;
    color: #fff;
}

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

.testimonial-large {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 400;
    font-style: normal;
    opacity: 0.7;
}

/* Process Section */
.process-section {
    padding: 8rem 5%;
    background: #fff;
}

.process-steps {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step {
    padding-bottom: 2rem;
}

.step-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 0.8rem;
}

.step p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
}

/* CTA Section */
.cta-section-large {
    padding: 10rem 5%;
    background: #f5f5f5;
    text-align: center;
}

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

.cta-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.cta-subtext {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.cta-primary {
    padding: 1.2rem 3rem;
    background: #1a1a1a;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.3s ease;
}

.cta-primary:hover {
    background: #333;
}

/* Form Section */
.form-section {
    padding: 8rem 5%;
    background: #fff;
}

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

.form-heading {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.form-intro {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid #ddd;
    background: #fafafa;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.btn-submit {
    padding: 1.2rem 3rem;
    background: #1a1a1a;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    align-self: flex-start;
    transition: background 0.3s ease;
}

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

/* Footer */
.minimal-footer {
    padding: 4rem 5%;
    background: #1a1a1a;
    color: #fff;
    text-align: center;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-text {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.sticky-btn {
    padding: 1rem 2rem;
    background: #1a1a1a;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Page Styles */
.page-hero {
    padding: 8rem 5% 6rem;
    background: #fff;
}

.hero-content-narrow {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
}

/* About Page */
.about-intro {
    padding: 6rem 5%;
    background: #f5f5f5;
}

.intro-paragraph {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.image-section {
    padding: 0;
}

.full-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
}

.mission-section {
    padding: 8rem 5%;
    background: #fff;
}

.values-section {
    padding: 8rem 5%;
    background: #f5f5f5;
}

.values-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.value-block {
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
}

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

.value-block p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
}

.team-section {
    padding: 8rem 5%;
    background: #fff;
}

.cta-secondary {
    padding: 8rem 5%;
    background: #1a1a1a;
    text-align: center;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    color: #fff;
}

.cta-box h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #fff;
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn-secondary:hover {
    background: #e0e0e0;
}

/* Services Page */
.services-detail {
    padding: 6rem 5%;
    background: #f5f5f5;
}

.service-detail-block {
    max-width: 1000px;
    margin: 0 auto 6rem;
    padding: 4rem;
    background: #fff;
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.service-number-large {
    font-size: 3rem;
    font-weight: 200;
    color: #ccc;
}

.service-title-group {
    flex: 1;
}

.service-title-group h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.price-display {
    font-size: 1.4rem;
    font-weight: 500;
    color: #1a1a1a;
}

.service-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
}

.service-description h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 2rem 0 1rem;
}

.service-list {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.service-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.5rem;
}

.service-note {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.cta-service {
    padding: 1rem 2.5rem;
    background: #1a1a1a;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.3s ease;
}

.cta-service:hover {
    background: #333;
}

.services-note-section {
    padding: 6rem 5%;
    background: #fff;
    text-align: center;
}

/* Contact Page */
.contact-info-section {
    padding: 6rem 5%;
    background: #f5f5f5;
}

.contact-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-block {
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
}

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

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.note-text {
    font-size: 0.95rem;
    color: #777;
    margin-top: 0.5rem;
}

.contact-approach {
    padding: 8rem 5%;
    background: #fff;
}

.inline-link {
    text-decoration: underline;
}

.map-placeholder {
    padding: 6rem 5%;
    background: #f5f5f5;
}

.map-notice {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.map-notice p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
}

.faq-contact {
    padding: 8rem 5%;
    background: #fff;
}

.faq-item {
    margin-bottom: 3rem;
}

.faq-item h4 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

/* Thanks Page */
.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 5%;
    background: #fff;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: #1a1a1a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.thanks-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.thanks-details {
    margin-bottom: 3rem;
}

.thanks-details p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.service-confirmation {
    font-weight: 500;
    color: #1a1a1a;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

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

.btn-secondary-outline:hover {
    background: #1a1a1a;
    color: #fff;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 5%;
    background: #fff;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 3rem;
}

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

.legal-container h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-container h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-container p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.2rem;
}

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

.legal-container li {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 0.5rem;
    list-style: disc;
}

.legal-container ol li {
    list-style: decimal;
}

.legal-container a {
    text-decoration: underline;
}

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

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    font-weight: 600;
    background: #f5f5f5;
}

/* Responsive Design */
@media (min-width: 768px) {
    .principle-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .principle-item {
        flex: 1 1 calc(33.333% - 2rem);
        min-width: 250px;
    }

    .values-container {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-block {
        flex: 1 1 calc(33.333% - 2rem);
        min-width: 250px;
    }

    .contact-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .contact-block {
        flex: 1 1 calc(33.333% - 2rem);
        border-top: none;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .nav-links {
        gap: 1.5rem;
        font-size: 0.85rem;
    }

    .hero-minimal {
        padding: 6rem 5%;
    }

    .spacer-section {
        height: 6rem;
    }

    .spacer-small {
        height: 3rem;
    }

    .intro-statement,
    .philosophy-section,
    .services-intro,
    .principle-section,
    .process-section,
    .form-section,
    .mission-section,
    .values-section,
    .team-section,
    .contact-approach,
    .faq-contact {
        padding: 4rem 5%;
    }

    .cta-section-large,
    .testimonial-section,
    .cta-secondary {
        padding: 6rem 5%;
    }

    .service-detail-block {
        padding: 2rem;
        margin-bottom: 4rem;
    }

    .service-header {
        flex-direction: column;
        gap: 1rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }
}
