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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2a2a2a;
    background-color: #fafafa;
}

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: #2d5f3f;
}

.ad-disclosure {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.6rem;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: #2d5f3f;
}

.hero-asymmetric {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.hero-image-block {
    position: relative;
    width: 70%;
    height: 500px;
    background-color: #d4c5b9;
}

.hero-image-block img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 2rem;
    right: -10%;
    background-color: rgba(45, 95, 63, 0.92);
    padding: 2.5rem 3rem;
    max-width: 500px;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.3;
}

.hero-text-offset {
    position: absolute;
    bottom: -5rem;
    right: 8%;
    background-color: #ffffff;
    padding: 2.5rem;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.hero-intro {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.btn-primary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #2d5f3f;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #234a31;
}

.intro-block {
    margin-top: 10rem;
    padding: 4rem 2rem;
    background-color: #f5f2ef;
}

.intro-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.intro-left {
    flex: 1.2;
}

.intro-left h3 {
    font-size: 1.9rem;
    font-weight: 400;
    color: #2a2a2a;
    margin-bottom: 1.5rem;
}

.intro-left p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

.intro-right {
    flex: 1;
    background-color: #d9cfc4;
}

.intro-right img {
    width: 100%;
    height: auto;
    display: block;
}

.services-showcase {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.section-title-offset {
    font-size: 2rem;
    font-weight: 300;
    color: #2a2a2a;
    margin-left: 15%;
    margin-bottom: 3rem;
}

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

.service-card {
    background-color: #fafafa;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.2s;
}

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

.service-card.large {
    flex: 0 0 calc(55% - 1rem);
}

.service-card.medium {
    flex: 0 0 calc(45% - 1rem);
}

.service-card.small {
    flex: 0 0 calc(30% - 1.33rem);
    background-color: #2d5f3f;
}

.service-card.small .card-content {
    padding: 2.5rem;
    color: #ffffff;
}

.service-card.small h4 {
    color: #ffffff;
}

.service-card.small .service-price {
    color: #ffffff;
}

.card-image {
    background-color: #d4c5b9;
    height: 280px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.card-content {
    padding: 2rem;
}

.card-content h4 {
    font-size: 1.3rem;
    font-weight: 400;
    color: #2a2a2a;
    margin-bottom: 1rem;
}

.card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.2rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 500;
    color: #2d5f3f;
    margin-bottom: 1.5rem;
    display: block;
}

.btn-select {
    padding: 0.8rem 1.8rem;
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-select:hover {
    background-color: #234a31;
}

.form-section {
    padding: 6rem 2rem;
    background-color: #f5f2ef;
}

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

.form-intro-text h3 {
    font-size: 1.9rem;
    font-weight: 400;
    color: #2a2a2a;
    margin-bottom: 1rem;
}

.form-intro-text p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2.5rem;
}

.contact-form {
    background-color: #ffffff;
    padding: 3rem;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: #2a2a2a;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d5f3f;
}

.form-group input[readonly] {
    background-color: #f5f5f5;
    color: #888;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-submit:hover {
    background-color: #234a31;
}

.testimonials-offset {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.testimonial-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.testimonial {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    font-style: italic;
}

.testimonial cite {
    display: block;
    font-style: normal;
    font-size: 0.9rem;
    color: #888;
    margin-top: 1rem;
}

.visual-break {
    height: 500px;
    background-color: #d4c5b9;
    overflow: hidden;
}

.visual-break img {
    width: 100%;
    height: 100%;
    display: block;
}

.philosophy-section {
    padding: 5rem 2rem;
    background-color: #2d5f3f;
}

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

.philosophy-content h3 {
    font-size: 1.8rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.philosophy-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.2rem;
}

.main-footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 4rem 2rem 2rem;
}

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

.footer-section h4 {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.footer-disclaimer {
    max-width: 1300px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255,255,255,0.05);
    border-left: 3px solid #2d5f3f;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #aaa;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    padding: 1.5rem;
    z-index: 2000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    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: 2rem;
}

.cookie-content p {
    flex: 1;
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.5;
}

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

.btn-cookie,
.btn-cookie-reject {
    padding: 0.8rem 1.8rem;
    border: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-cookie {
    background-color: #2d5f3f;
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: #234a31;
}

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

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

.about-hero {
    padding: 5rem 2rem;
    background-color: #f5f2ef;
    text-align: center;
}

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

.about-hero h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #2a2a2a;
    margin-bottom: 1.5rem;
}

.about-hero p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
}

.about-story {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.story-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-image {
    flex: 1;
    background-color: #d4c5b9;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-text {
    flex: 1.3;
}

.story-text h3 {
    font-size: 1.9rem;
    font-weight: 400;
    color: #2a2a2a;
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #f5f2ef;
}

.values-section h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 300;
    color: #2a2a2a;
    margin-bottom: 3rem;
}

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

.value-item {
    flex: 0 0 calc(50% - 1rem);
    padding: 2.5rem;
    background-color: #ffffff;
}

.value-item h4 {
    font-size: 1.4rem;
    font-weight: 400;
    color: #2d5f3f;
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

.team-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-container h3 {
    font-size: 2rem;
    font-weight: 300;
    color: #2a2a2a;
    margin-bottom: 1.5rem;
}

.team-intro {
    margin-bottom: 3rem;
}

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

.team-image {
    background-color: #d4c5b9;
    height: 500px;
}

.team-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.process-section {
    padding: 5rem 2rem;
    background-color: #f5f2ef;
}

.process-section h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 300;
    color: #2a2a2a;
    margin-bottom: 3rem;
}

.process-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.process-step {
    flex: 1;
    padding: 2rem;
    background-color: #ffffff;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 300;
    color: #2d5f3f;
    margin-bottom: 1rem;
}

.process-step h4 {
    font-size: 1.2rem;
    font-weight: 400;
    color: #2a2a2a;
    margin-bottom: 0.8rem;
}

.process-step p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.expertise-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.expertise-content h3 {
    font-size: 1.9rem;
    font-weight: 400;
    color: #2a2a2a;
    margin-bottom: 1.5rem;
}

.expertise-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

.services-page-hero {
    padding: 4rem 2rem;
    background-color: #f5f2ef;
    text-align: center;
}

.services-hero-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #2a2a2a;
    margin-bottom: 1rem;
}

.services-hero-content p {
    font-size: 1.1rem;
    color: #555;
}

.services-detailed {
    background-color: #ffffff;
}

.service-detail-block {
    max-width: 1300px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.service-detail-block.reverse {
    flex-direction: row-reverse;
    background-color: #fafafa;
}

.service-detail-content {
    flex: 1.2;
}

.service-detail-content h3 {
    font-size: 1.8rem;
    font-weight: 400;
    color: #2a2a2a;
    margin-bottom: 0.5rem;
}

.service-duration {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1.2rem;
}

.service-detail-content > p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

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

.service-includes li {
    font-size: 0.95rem;
    color: #555;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.service-includes li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2d5f3f;
    font-weight: bold;
}

.service-pricing-block {
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 0.95rem;
    color: #666;
    margin-right: 0.8rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 500;
    color: #2d5f3f;
}

.price-note {
    display: block;
    font-size: 0.85rem;
    color: #888;
    margin-top: 0.5rem;
}

.service-detail-image {
    flex: 1;
    background-color: #d4c5b9;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.booking-cta-section {
    padding: 5rem 2rem;
    background-color: #2d5f3f;
    text-align: center;
}

.booking-cta-content h3 {
    font-size: 2rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 1rem;
}

.booking-cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.btn-primary-large {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background-color: #ffffff;
    color: #2d5f3f;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.2s;
}

.btn-primary-large:hover {
    background-color: #f5f5f5;
}

.contact-hero {
    padding: 4rem 2rem;
    background-color: #f5f2ef;
    text-align: center;
}

.contact-hero h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #2a2a2a;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.1rem;
    color: #555;
}

.contact-information {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    justify-content: center;
}

.contact-block {
    flex: 1;
    max-width: 350px;
}

.contact-block h3 {
    font-size: 1.3rem;
    font-weight: 400;
    color: #2d5f3f;
    margin-bottom: 1rem;
}

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

.contact-email {
    color: #2a2a2a;
    font-weight: 500;
}

.email-note,
.hours-note {
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.8rem;
}

.location-section {
    padding: 4rem 2rem;
    background-color: #f5f2ef;
}

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

.location-content h3 {
    font-size: 1.8rem;
    font-weight: 400;
    color: #2a2a2a;
    margin-bottom: 2rem;
}

.access-info {
    display: flex;
    gap: 3rem;
}

.access-method {
    flex: 1;
}

.access-method h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2d5f3f;
    margin-bottom: 0.8rem;
}

.access-method p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

.contact-visual {
    height: 450px;
    background-color: #d4c5b9;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.thanks-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-icon svg {
    display: inline-block;
}

.thanks-container h2 {
    font-size: 2.2rem;
    font-weight: 400;
    color: #2d5f3f;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #2a2a2a;
    margin-bottom: 1rem;
}

.thanks-container > p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.next-steps {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f5f2ef;
    text-align: left;
}

.next-steps h3 {
    font-size: 1.3rem;
    font-weight: 400;
    color: #2a2a2a;
    margin-bottom: 1rem;
}

.next-steps ol {
    padding-left: 1.5rem;
}

.next-steps li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0.8rem;
}

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

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: transparent;
    color: #2d5f3f;
    text-decoration: none;
    font-size: 0.9rem;
    border: 2px solid #2d5f3f;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background-color: #2d5f3f;
    color: #ffffff;
}

.legal-content {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.legal-container h2 {
    font-size: 2.2rem;
    font-weight: 300;
    color: #2a2a2a;
    margin-bottom: 0.5rem;
}

.legal-date {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 3rem;
}

.legal-container h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #2d5f3f;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-container h4 {
    font-size: 1.2rem;
    font-weight: 400;
    color: #2a2a2a;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

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

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

.legal-container li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0.6rem;
}

.legal-container a {
    color: #2d5f3f;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #234a31;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .brand-section {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-asymmetric {
        min-height: auto;
    }

    .hero-image-block {
        width: 100%;
        height: 350px;
    }

    .hero-overlay {
        position: static;
        width: 100%;
        max-width: none;
    }

    .hero-text-offset {
        position: static;
        margin-top: 2rem;
        max-width: none;
    }

    .intro-block {
        margin-top: 3rem;
    }

    .intro-container {
        flex-direction: column;
        gap: 2rem;
    }

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

    .service-card.large,
    .service-card.medium,
    .service-card.small {
        flex: 0 0 100%;
    }

    .testimonial-container {
        flex-direction: column;
        gap: 2rem;
    }

    .story-container {
        flex-direction: column;
        gap: 2rem;
    }

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

    .value-item {
        flex: 0 0 100%;
    }

    .process-container {
        flex-direction: column;
    }

    .service-detail-block,
    .service-detail-block.reverse {
        flex-direction: column;
        gap: 2rem;
    }

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

    .access-info {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

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

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