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

:root {
    --primary: #2c3e50;
    --secondary: #8b7355;
    --accent: #d4a574;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --grey: #6c757d;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
}

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

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

button {
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.ad-notice {
    background: var(--accent);
    color: var(--dark);
    text-align: center;
    padding: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    background: var(--white);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 36px;
    z-index: 999;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

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

.nav-links a {
    font-weight: 500;
    color: var(--grey);
    position: relative;
}

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

.hero-offset {
    display: flex;
    min-height: 85vh;
    padding: 4rem 5%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

.hero-text-block {
    flex: 0 0 45%;
    padding: 3rem 2rem 3rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-weight: 800;
}

.hero-text-block p {
    font-size: 1.15rem;
    color: var(--grey);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-image-offset {
    flex: 0 0 55%;
    position: relative;
    margin-left: -5%;
    margin-top: -2rem;
    background-color: var(--secondary);
}

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

.cta-primary {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    align-self: flex-start;
}

.cta-primary:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-weight: 600;
}

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

.intro-asymmetric {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    align-items: center;
}

.intro-left {
    flex: 0 0 40%;
    background-color: var(--accent);
}

.intro-right {
    flex: 0 0 55%;
    padding: 1rem 0;
}

.intro-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.intro-right p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: var(--grey);
}

.philosophy-block {
    background: var(--white);
    padding: 5rem 15%;
    text-align: center;
}

.philosophy-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.philosophy-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--grey);
}

.services-grid-offset {
    padding: 6rem 5%;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.service-card {
    flex: 0 0 calc(50% - 1.5rem);
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    background-color: var(--light);
}

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

.service-card.offset-1 {
    margin-top: 2rem;
}

.service-card.offset-2 {
    margin-top: -2rem;
}

.service-card.offset-3 {
    margin-top: 3rem;
}

.service-card.offset-4 {
    margin-top: -1rem;
}

.service-card img {
    width: 100%;
    height: 250px;
}

.service-card h3 {
    font-size: 1.6rem;
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary);
}

.service-card p {
    padding: 0 1.5rem;
    color: var(--grey);
    flex-grow: 1;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    padding: 1rem 1.5rem 0.5rem;
}

.service-card .select-service {
    background: var(--secondary);
    color: var(--white);
    padding: 1rem;
    font-weight: 600;
    font-size: 1rem;
    margin: 1rem 1.5rem 1.5rem;
    border-radius: 4px;
}

.service-card .select-service:hover {
    background: var(--primary);
}

.testimonial-inline {
    background: var(--primary);
    padding: 4rem 10%;
    color: var(--white);
}

.testimonial-inline blockquote {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-style: normal;
    opacity: 0.9;
}

.process-visual {
    padding: 6rem 5%;
    background: var(--light);
}

.process-visual h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--primary);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

.step {
    flex: 1;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    position: relative;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.step p {
    color: var(--grey);
    line-height: 1.7;
}

.booking-form-section {
    padding: 6rem 5%;
    background: var(--white);
}

.form-container-offset {
    max-width: 600px;
    margin: 0 0 0 10%;
}

.form-container-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.form-container-offset > p {
    color: var(--grey);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.booking-form input,
.booking-form textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.booking-form input[readonly] {
    background: var(--light);
    cursor: not-allowed;
}

.submit-btn {
    background: var(--secondary);
    color: var(--white);
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 0.5rem;
}

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

.main-footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col a {
    display: block;
    margin-bottom: 0.5rem;
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-col p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-disclaimer {
    background: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.7;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 2rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    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;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--accent);
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 4px;
}

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

.cookie-accept:hover {
    background: var(--primary);
}

.cookie-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.page-hero-about,
.page-hero-services,
.page-hero-contact {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    text-align: center;
}

.page-hero-about h1,
.page-hero-services h1,
.page-hero-contact h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.story-section {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    align-items: center;
}

.story-image {
    flex: 0 0 45%;
    background-color: var(--secondary);
}

.story-text {
    flex: 0 0 50%;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

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

.values-asymmetric {
    padding: 6rem 8%;
    background: var(--light);
}

.values-asymmetric h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary);
}

.values-grid {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
}

.value-item {
    flex: 1;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.value-item p {
    color: var(--grey);
    line-height: 1.7;
}

.team-section {
    padding: 5rem 15%;
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.team-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--grey);
    margin-bottom: 1.5rem;
}

.cta-inline-about {
    padding: 4rem 5%;
    background: var(--light);
    text-align: center;
}

.cta-inline-about p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.services-detail-layout {
    padding: 4rem 5%;
}

.service-detail-block {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

.service-detail-block.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 0 0 45%;
    background-color: var(--secondary);
}

.service-detail-content {
    flex: 0 0 50%;
}

.service-detail-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--grey);
    margin-bottom: 1.2rem;
}

.service-includes {
    list-style: none;
    margin: 1.5rem 0;
}

.service-includes li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--grey);
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

.booking-cta-services {
    padding: 3rem 5%;
    background: var(--light);
    text-align: center;
}

.booking-cta-services h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.booking-cta-services p {
    color: var(--grey);
}

.contact-layout {
    padding: 5rem 10%;
    display: flex;
    gap: 5rem;
}

.contact-info-block {
    flex: 0 0 45%;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

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

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--secondary);
}

.contact-detail p {
    color: var(--grey);
    line-height: 1.7;
}

.contact-note {
    flex: 0 0 45%;
    background: var(--light);
    padding: 2.5rem;
    border-radius: 8px;
    align-self: flex-start;
}

.contact-note h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.contact-note p {
    color: var(--grey);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-note a {
    color: var(--secondary);
    text-decoration: underline;
}

.location-visual {
    padding: 5rem 15%;
    text-align: center;
    background: var(--light);
}

.location-visual h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.location-visual p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--grey);
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 5%;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: var(--white);
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.thanks-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--grey);
    margin-bottom: 1.5rem;
}

#selectedServiceInfo {
    font-weight: 600;
    color: var(--secondary);
}

.legal-page {
    padding: 5rem 10%;
    max-width: 1200px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--secondary);
}

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

.legal-page ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
    color: var(--grey);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
    }

    .hero-text-block,
    .hero-image-offset {
        flex: 1;
        margin: 0;
    }

    .intro-asymmetric,
    .story-section,
    .service-detail-block {
        flex-direction: column;
    }

    .intro-left,
    .intro-right,
    .story-image,
    .story-text,
    .service-detail-image,
    .service-detail-content {
        flex: 1;
    }

    .process-steps,
    .values-grid {
        flex-direction: column;
    }

    .service-card {
        flex: 0 0 100%;
    }

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

@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
    }

    .hero-text-block h1 {
        font-size: 2.5rem;
    }

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

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

    .form-container-offset {
        margin: 0 auto;
    }
}