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

:root {
    --primary-color: #2d4a3e;
    --secondary-color: #7a9b8a;
    --accent-color: #c4a57b;
    --text-dark: #1a2921;
    --text-light: #5a6d63;
    --background-light: #f8f9f7;
    --background-cream: #faf8f5;
    --white: #ffffff;
    --border-subtle: #e8e9e7;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    font-size: 18px;
}

h1 {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-light);
}

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

a:hover {
    color: var(--secondary-color);
}

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

.header-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-floating {
    padding: 1.5rem 0;
}

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

.brand-mark {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--primary-color);
}

.brand-mark a {
    color: var(--primary-color);
}

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

.nav-links a {
    font-size: 1rem;
    color: var(--text-light);
    transition: color 0.3s ease;
}

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

.ad-notice {
    font-size: 0.75rem;
    color: var(--text-light);
    opacity: 0.7;
    padding-left: 2rem;
    border-left: 1px solid var(--border-subtle);
}

main {
    padding-top: 100px;
}

.hero-space {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    margin-bottom: 8rem;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    background-color: var(--background-light);
}

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

.hero-overlay {
    position: absolute;
    bottom: 8rem;
    left: 3rem;
}

.hero-title {
    font-size: 5rem;
    font-weight: 200;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.intro-asymmetric {
    max-width: 1400px;
    margin: 0 auto 10rem;
    padding: 0 3rem;
    display: flex;
    gap: 6rem;
    align-items: center;
}

.intro-text-block {
    flex: 1.2;
}

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

.intro-visual-block {
    flex: 1;
    background-color: var(--background-light);
}

.intro-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.philosophy-wide {
    background-color: var(--background-cream);
    padding: 10rem 3rem;
    margin-bottom: 10rem;
}

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

.philosophy-content h2 {
    margin-bottom: 3rem;
}

.philosophy-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.services-preview {
    max-width: 1400px;
    margin: 0 auto 10rem;
    padding: 0 3rem;
}

.services-grid-minimal {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.service-card-stacked {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.service-visual {
    flex: 1;
    background-color: var(--background-light);
}

.service-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-info {
    flex: 1;
    padding-top: 1rem;
}

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

.service-info p {
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.btn-service-select {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

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

.testimonial-inline {
    max-width: 1000px;
    margin: 0 auto 10rem;
    padding: 0 3rem;
}

.testimonial-content {
    background-color: var(--background-cream);
    padding: 5rem 4rem;
    border-left: 4px solid var(--accent-color);
}

.testimonial-content p {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

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

.approach-offset {
    max-width: 1400px;
    margin: 0 auto 10rem;
    padding: 0 3rem;
}

.approach-container {
    display: flex;
    gap: 5rem;
    align-items: center;
}

.approach-text {
    flex: 1.3;
}

.approach-text h2 {
    margin-bottom: 2.5rem;
}

.approach-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.approach-image {
    flex: 1;
    background-color: var(--background-light);
}

.approach-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.form-section {
    background-color: var(--background-light);
    padding: 10rem 3rem;
    margin-bottom: 10rem;
}

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

.form-container h2 {
    text-align: center;
    margin-bottom: 4rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid var(--border-subtle);
    background-color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
    align-self: flex-start;
}

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

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

.value-block {
    flex: 1;
}

.value-block h3 {
    margin-bottom: 1.5rem;
}

.value-block p {
    font-size: 1rem;
    line-height: 1.7;
}

.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5rem 3rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    margin-bottom: 4rem;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--white);
}

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-top: 2px solid var(--primary-color);
    padding: 2rem;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 2rem;
    border: none;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

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

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

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

.btn-cookie-reject:hover {
    background-color: var(--background-light);
}

.page-intro {
    max-width: 1000px;
    margin: 0 auto 6rem;
    padding: 0 3rem;
    text-align: center;
}

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

.story-section {
    max-width: 1400px;
    margin: 0 auto 10rem;
    padding: 0 3rem;
}

.story-content {
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.story-img {
    flex: 1;
    width: 100%;
    height: 600px;
    object-fit: cover;
    background-color: var(--background-light);
}

.story-text {
    flex: 1;
    padding-top: 2rem;
}

.story-text h2 {
    margin-bottom: 2.5rem;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.values-detail {
    max-width: 1400px;
    margin: 0 auto 10rem;
    padding: 0 3rem;
}

.values-detail h2 {
    text-align: center;
    margin-bottom: 5rem;
}

.value-item {
    display: flex;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
}

.value-item-reverse {
    flex-direction: row-reverse;
}

.value-text {
    flex: 1;
}

.value-text h3 {
    margin-bottom: 1.5rem;
}

.value-text p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.value-visual {
    flex: 1;
    background-color: var(--background-light);
}

.value-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.team-approach {
    max-width: 1200px;
    margin: 0 auto 10rem;
    padding: 0 3rem;
}

.team-approach h2 {
    text-align: center;
    margin-bottom: 5rem;
}

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

.approach-step {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 300px;
}

.step-number {
    font-size: 3rem;
    font-weight: 200;
    color: var(--accent-color);
    display: block;
    margin-bottom: 1rem;
}

.approach-step h3 {
    margin-bottom: 1rem;
}

.approach-step p {
    font-size: 1rem;
    line-height: 1.7;
}

.philosophy-statement {
    background-color: var(--background-cream);
    padding: 8rem 3rem;
    margin-bottom: 10rem;
}

.philosophy-statement blockquote {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-statement p {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.5;
    font-style: italic;
    color: var(--primary-color);
}

.cta-subtle {
    max-width: 800px;
    margin: 0 auto 10rem;
    padding: 0 3rem;
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.btn-cta {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

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

.services-detailed {
    max-width: 1400px;
    margin: 0 auto 8rem;
    padding: 0 3rem;
}

.service-detail-card {
    display: flex;
    gap: 5rem;
    margin-bottom: 8rem;
    align-items: flex-start;
}

.service-card-reverse {
    flex-direction: row-reverse;
}

.service-image-wrapper {
    flex: 1;
    background-color: var(--background-light);
}

.service-detail-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
    padding-top: 2rem;
}

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

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-detail-content h3 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-includes {
    list-style: none;
    margin-bottom: 2.5rem;
}

.service-includes li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

.service-pricing {
    background-color: var(--background-cream);
    padding: 2rem;
    margin: 2.5rem 0;
}

.price-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.services-note {
    max-width: 1000px;
    margin: 0 auto 6rem;
    padding: 2rem 3rem;
    background-color: var(--background-cream);
    text-align: center;
}

.services-note p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

.cta-services {
    max-width: 800px;
    margin: 0 auto 10rem;
    padding: 0 3rem;
    text-align: center;
}

.cta-services h2 {
    margin-bottom: 1.5rem;
}

.cta-services p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.contact-layout {
    max-width: 1400px;
    margin: 0 auto 8rem;
    padding: 0 3rem;
    display: flex;
    gap: 6rem;
}

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

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

.contact-item h2 {
    margin-bottom: 1.5rem;
}

.contact-item h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.7;
}

.contact-email {
    font-family: monospace;
    color: var(--primary-color);
    font-size: 1.1rem;
    cursor: default;
}

.contact-note {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 1rem;
}

.contact-visual-block {
    flex: 1;
    background-color: var(--background-light);
}

.contact-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.visit-info {
    max-width: 1000px;
    margin: 0 auto 6rem;
    padding: 0 3rem;
}

.visit-info h2 {
    margin-bottom: 2rem;
}

.visit-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.location-info {
    max-width: 1200px;
    margin: 0 auto 6rem;
    padding: 0 3rem;
}

.location-info h2 {
    margin-bottom: 2rem;
}

.location-info > p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.regions-list {
    display: flex;
    gap: 3rem;
}

.region-item {
    flex: 1;
    background-color: var(--background-cream);
    padding: 2.5rem;
}

.region-item h3 {
    margin-bottom: 1rem;
}

.region-item p {
    font-size: 1rem;
    line-height: 1.6;
}

.contact-expectation {
    max-width: 1000px;
    margin: 0 auto 6rem;
    padding: 0 3rem;
}

.contact-expectation h2 {
    margin-bottom: 2rem;
}

.contact-expectation p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.thanks-container {
    max-width: 1000px;
    margin: 0 auto 10rem;
    padding: 0 3rem;
}

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

.thanks-content h1 {
    margin-bottom: 3rem;
}

.thanks-message {
    margin-bottom: 4rem;
}

.thanks-message p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.thanks-visual {
    margin-bottom: 5rem;
    background-color: var(--background-light);
}

.thanks-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.thanks-next-steps {
    text-align: left;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.thanks-next-steps h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.next-steps-list {
    list-style: decimal;
    padding-left: 2rem;
}

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

.thanks-explore {
    margin-top: 5rem;
}

.thanks-explore h2 {
    margin-bottom: 2.5rem;
}

.explore-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.explore-link {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--background-cream);
    color: var(--primary-color);
    transition: background-color 0.3s ease;
}

.explore-link:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto 8rem;
    padding: 0 3rem;
}

.legal-content h1 {
    margin-bottom: 1rem;
}

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

.legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

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

.legal-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

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

.legal-list li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: var(--text-light);
}

.legal-link {
    color: var(--primary-color);
    text-decoration: underline;
}

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

    h2 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .intro-asymmetric {
        flex-direction: column;
        gap: 3rem;
    }

    .service-card-stacked,
    .approach-container,
    .story-content,
    .value-item,
    .contact-layout,
    .service-detail-card {
        flex-direction: column;
    }

    .value-item-reverse,
    .service-card-reverse {
        flex-direction: column;
    }

    .values-grid,
    .regions-list {
        flex-direction: column;
    }

    .nav-container {
        padding: 0 2rem;
    }

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

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .ad-notice {
        display: none;
    }

    .philosophy-content p,
    .lead-text {
        font-size: 1.2rem;
    }

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

    .explore-links {
        flex-direction: column;
    }

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