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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fafafa;
}

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2d5a3d;
}

.ad-label {
    font-size: 0.75rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    background-color: #f0f0f0;
    border-radius: 3px;
}

.hero-visual {
    margin-top: 70px;
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #1a1a1a;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
}

.hero-overlay h1 {
    font-size: 4rem;
    color: #ffffff;
    text-align: center;
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    max-width: 900px;
}

.hero-overlay p {
    font-size: 1.3rem;
    color: #f0f0f0;
    text-align: center;
    max-width: 700px;
}

.intro-narrative {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.narrow-content {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
}

.visual-block-left {
    padding: 4rem 2rem;
    background-color: #f5f5f5;
}

.content-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.image-segment {
    flex: 1.2;
    background-color: #e0e0e0;
}

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

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

.text-segment h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: #2c2c2c;
}

.text-segment p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: #555;
}

.text-link {
    color: #2d5a3d;
    text-decoration: none;
    border-bottom: 1px solid #2d5a3d;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.text-link:hover {
    color: #1f3d29;
    border-bottom-color: #1f3d29;
}

.service-preview {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.service-cards-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    flex: 1;
    max-width: 400px;
    background-color: #fafafa;
    overflow: hidden;
}

.card-image-wrap {
    width: 100%;
    height: 280px;
    background-color: #e0e0e0;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .card-img {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    font-weight: 500;
    color: #2c2c2c;
}

.service-card p {
    margin: 0 1.5rem 1rem;
    color: #666;
    line-height: 1.6;
}

.price-indicator {
    display: block;
    margin: 0 1.5rem 1.5rem;
    font-size: 1.1rem;
    color: #2d5a3d;
    font-weight: 600;
}

.visual-block-right {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.content-grid-asymmetric-reverse {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    gap: 4rem;
    align-items: center;
}

blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    border-left: 3px solid #2d5a3d;
    padding-left: 1.5rem;
    margin: 2rem 0;
    line-height: 1.7;
}

.cta-form-section {
    padding: 5rem 2rem;
    background-color: #2d5a3d;
    color: #ffffff;
}

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

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    text-align: center;
}

.form-container > p {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    color: #e0e0e0;
}

.project-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-row label {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #e0e0e0;
}

.form-row input,
.form-row select,
.form-row textarea {
    padding: 0.9rem;
    font-size: 1rem;
    border: none;
    background-color: rgba(255, 255, 255, 0.95);
    color: #2c2c2c;
    font-family: inherit;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: 2px solid #ffffff;
}

.btn-submit {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background-color: #ffffff;
    color: #2d5a3d;
    border: none;
    cursor: pointer;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.final-visual {
    position: relative;
    background-color: #1a1a1a;
}

.image-with-caption {
    position: relative;
}

.wide-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    opacity: 0.7;
}

.caption-overlay {
    position: absolute;
    bottom: 3rem;
    left: 0;
    right: 0;
    text-align: center;
}

.caption-overlay p {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 300;
}

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

.footer-grid {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 4rem;
    justify-content: space-between;
}

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

.footer-col p {
    line-height: 1.7;
    color: #aaa;
}

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

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

.footer-col ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 2000;
    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;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #2d5a3d;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #1f3d29;
}

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

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

.page-header-visual {
    margin-top: 70px;
    position: relative;
    height: 50vh;
    overflow: hidden;
    background-color: #1a1a1a;
}

.header-image-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.header-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.header-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-text-overlay h1 {
    font-size: 3.5rem;
    color: #ffffff;
    font-weight: 300;
}

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

.about-story h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
    text-align: center;
}

.about-story p {
    margin-bottom: 1.5rem;
}

.approach-section {
    padding: 5rem 2rem;
    background-color: #f5f5f5;
}

.content-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.approach-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #555;
}

.approach-visual {
    flex: 1;
    background-color: #e0e0e0;
}

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

.values-block {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.values-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 400;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.value-item {
    flex: 1;
    min-width: 280px;
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d5a3d;
    font-weight: 500;
}

.value-item p {
    line-height: 1.7;
    color: #555;
}

.experience-highlight {
    padding: 4rem 2rem;
    background-color: #2d5a3d;
    color: #ffffff;
}

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

.experience-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

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

.testimonial-section {
    padding: 5rem 2rem;
    background-color: #f5f5f5;
}

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

.testimonial-wrap blockquote {
    font-size: 1.5rem;
    border: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.testimonial-wrap cite {
    font-style: normal;
    color: #666;
    font-size: 1rem;
}

.services-intro {
    margin-top: 70px;
    padding: 5rem 2rem;
    background-color: #ffffff;
    text-align: center;
}

.intro-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.intro-content p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.services-listing {
    padding: 3rem 2rem;
    background-color: #fafafa;
}

.service-detail-card {
    max-width: 1400px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    background-color: #ffffff;
    padding: 2rem;
}

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

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

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

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

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

.service-info p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #555;
}

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

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2d5a3d;
}

.pricing-info {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 600;
    color: #2d5a3d;
}

.price-note {
    font-size: 0.9rem;
    color: #888;
}

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

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

.booking-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    text-align: center;
}

.booking-container > p {
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
    font-size: 1.1rem;
}

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

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    background-color: #fafafa;
    color: #2c2c2c;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d5a3d;
    background-color: #ffffff;
}

.btn-book {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background-color: #2d5a3d;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-book:hover {
    background-color: #1f3d29;
    transform: translateY(-2px);
}

.contact-header {
    margin-top: 70px;
    padding: 4rem 2rem;
    background-color: #ffffff;
    text-align: center;
}

.contact-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.contact-header p {
    font-size: 1.2rem;
    color: #666;
}

.contact-main {
    padding: 3rem 2rem;
    background-color: #fafafa;
}

.contact-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

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

.contact-info-block h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.info-item {
    margin-bottom: 2.5rem;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2d5a3d;
    font-weight: 500;
}

.info-item p {
    line-height: 1.7;
    color: #555;
}

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

.contact-visual-block {
    flex: 1;
    background-color: #e0e0e0;
}

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

.location-note {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

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

.location-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #555;
}

.thanks-container {
    margin-top: 70px;
    padding: 5rem 2rem;
    background-color: #fafafa;
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 400;
    text-align: center;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: #e8f5e9;
    padding: 1rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 500;
    color: #2d5a3d;
    display: none;
}

.service-confirmation.show {
    display: block;
}

.next-steps {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

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

.steps-list li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.steps-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: 600;
}

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

.btn-primary,
.btn-secondary {
    padding: 0.9rem 2rem;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #2d5a3d;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1f3d29;
}

.btn-secondary {
    background-color: transparent;
    color: #2d5a3d;
    border: 2px solid #2d5a3d;
}

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

.thanks-visual {
    flex: 1;
    background-color: #e0e0e0;
}

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

.legal-page {
    margin-top: 70px;
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

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

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

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: #2d5a3d;
}

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

.legal-content p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: #555;
}

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

.legal-content ul li {
    margin-bottom: 0.7rem;
    line-height: 1.6;
    color: #555;
}

.legal-content a {
    color: #2d5a3d;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1f3d29;
}

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

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

    .hero-overlay p {
        font-size: 1.1rem;
    }

    .content-grid-asymmetric,
    .content-grid-asymmetric-reverse,
    .service-cards-container,
    .content-split,
    .contact-layout,
    .thanks-container {
        flex-direction: column;
    }

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

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

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

    .header-text-overlay h1 {
        font-size: 2.5rem;
    }

    .thanks-container {
        margin-top: 70px;
    }
}