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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #8B7355;
    color: #ffffff;
}

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

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

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

.floating-nav {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    max-width: 90%;
}

.nav-brand {
    font-weight: 600;
    font-size: 16px;
    color: #2c2c2c;
}

.nav-links {
    display: flex;
    gap: 25px;
}

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

.nav-links a:hover {
    color: #8B7355;
}

.ad-notice {
    font-size: 11px;
    color: #888;
    font-style: italic;
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 60px 80px;
    gap: 60px;
}

.hero-text-block {
    flex: 1;
    max-width: 550px;
}

.hero-text-block h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-text-block p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #555;
}

.cta-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #8B7355;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.hero-image-offset {
    flex: 1;
    height: 600px;
    transform: translateY(80px);
    border-radius: 8px;
    overflow: hidden;
}

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

.vision-block {
    padding: 100px 60px;
    background-color: #f5f1ec;
}

.offset-container {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.vision-image {
    width: 450px;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    transform: translateX(-40px);
}

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

.vision-text {
    flex: 1;
}

.vision-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.vision-text p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #555;
}

.services-asymmetric {
    padding: 120px 60px;
    background-color: #ffffff;
}

.section-header-offset {
    max-width: 600px;
    margin-bottom: 60px;
    margin-left: 120px;
}

.section-header-offset h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.section-header-offset p {
    font-size: 18px;
    color: #666;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    border-radius: 8px;
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-large {
    flex: 1 1 calc(60% - 15px);
}

.card-small {
    flex: 1 1 calc(40% - 15px);
}

.card-medium {
    flex: 1 1 calc(50% - 15px);
}

.service-image {
    width: 100%;
    height: 250px;
    margin-bottom: 25px;
    border-radius: 6px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 15px;
    margin-bottom: 20px;
    color: #555;
}

.price-tag {
    font-size: 20px;
    font-weight: 600;
    color: #8B7355;
    margin-bottom: 15px;
}

.service-link {
    color: #8B7355;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #A9927D;
    text-decoration: underline;
}

.cta-inline {
    text-align: center;
    margin-top: 60px;
}

.cta-inline p {
    font-size: 18px;
    color: #555;
}

.cta-inline a {
    color: #8B7355;
    font-weight: 500;
    text-decoration: underline;
}

.approach-section {
    padding: 100px 60px;
    background-color: #fafafa;
}

.approach-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-text-wide {
    flex: 1.2;
}

.approach-text-wide h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.approach-text-wide p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.approach-image-stack {
    width: 400px;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    transform: rotate(-2deg);
}

.approach-image-stack img {
    width: 100%;
    height: 100%;
}

.form-section-offset {
    padding: 100px 60px;
    background-color: #f5f1ec;
}

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

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 16px;
    color: #555;
}

.project-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #8B7355;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.testimonials-scattered {
    padding: 100px 60px;
    background-color: #ffffff;
}

.testimonials-scattered h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.testimonial-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial-card {
    background-color: #f5f1ec;
    padding: 35px;
    border-radius: 8px;
    max-width: 600px;
}

.testimonial-left {
    align-self: flex-start;
    margin-left: 80px;
}

.testimonial-right {
    align-self: flex-end;
    margin-right: 80px;
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.testimonial-author {
    font-size: 14px;
    color: #888;
    font-style: normal;
}

.footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 60px 60px 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 30px 0;
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
}

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

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.about-hero {
    padding: 140px 60px 80px;
    background-color: #f5f1ec;
}

.about-intro-offset {
    max-width: 700px;
    margin-left: 15%;
}

.about-intro-offset h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.about-intro-offset p {
    font-size: 20px;
    color: #555;
}

.story-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

.story-layout-asymmetric {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.story-text p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.story-image-offset {
    width: 450px;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    transform: translateY(-60px);
}

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

.values-section {
    padding: 100px 60px;
    background-color: #fafafa;
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.value-block {
    padding: 40px;
    border-radius: 8px;
}

.value-wide {
    flex: 1 1 calc(60% - 15px);
}

.value-narrow {
    flex: 1 1 calc(40% - 15px);
}

.value-offset {
    flex: 1 1 100%;
    margin-left: 10%;
    max-width: 700px;
}

.value-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.value-block p {
    font-size: 15px;
    color: #555;
}

.team-section-scattered {
    padding: 100px 60px;
    background-color: #ffffff;
}

.team-section-scattered h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 18px;
    color: #666;
}

.team-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.team-member {
    max-width: 550px;
}

.team-pos-left {
    align-self: flex-start;
}

.team-pos-right {
    align-self: flex-end;
}

.team-pos-center {
    align-self: center;
}

.member-image {
    width: 100%;
    height: 300px;
    margin-bottom: 25px;
    border-radius: 8px;
    overflow: hidden;
}

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

.team-member h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.team-member p {
    font-size: 15px;
    color: #555;
}

.approach-detail {
    padding: 100px 60px;
    background-color: #f5f1ec;
}

.approach-content-offset {
    max-width: 900px;
    margin: 0 auto;
    margin-right: 15%;
}

.approach-content-offset h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.phase-blocks {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.phase-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.phase-number {
    font-size: 48px;
    font-weight: 700;
    color: #8B7355;
    line-height: 1;
}

.phase-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.phase-item p {
    font-size: 15px;
    color: #555;
}

.services-header {
    padding: 140px 60px 60px;
    background-color: #f5f1ec;
    text-align: center;
}

.services-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-header p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.services-detail {
    padding: 80px 60px;
    background-color: #ffffff;
}

.service-full-card {
    max-width: 1200px;
    margin: 0 auto 80px;
}

.service-content-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-reverse .service-content-layout {
    flex-direction: row-reverse;
}

.service-text-area {
    flex: 1;
}

.service-text-area h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-text-area p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
}

.service-features {
    margin: 25px 0;
    padding-left: 20px;
}

.service-features li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #555;
}

.service-pricing {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-label {
    font-size: 16px;
    color: #666;
}

.price-amount {
    font-size: 28px;
    font-weight: 700;
    color: #8B7355;
}

.service-visual {
    width: 450px;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
}

.cta-services {
    padding: 80px 60px;
    background-color: #f5f1ec;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 45px;
    background-color: #8B7355;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-cta-large:hover {
    background-color: #A9927D;
    transform: translateY(-2px);
}

.contact-header {
    padding: 140px 60px 60px;
    background-color: #f5f1ec;
    text-align: center;
}

.contact-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-header p {
    font-size: 18px;
    color: #666;
}

.contact-layout-offset {
    padding: 80px 60px;
    background-color: #ffffff;
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-info-block h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.info-item {
    margin-bottom: 35px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.info-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.contact-visual {
    width: 450px;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    transform: translateY(-40px);
}

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

.map-note {
    padding: 60px 60px 80px;
    background-color: #ffffff;
    text-align: center;
}

.map-note p {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
}

.thanks-section {
    padding: 140px 60px 80px;
    background-color: #ffffff;
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.thanks-details {
    background-color: #f5f1ec;
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #8B7355;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    background-color: transparent;
    color: #8B7355;
    text-decoration: none;
    border: 2px solid #8B7355;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.thanks-visual {
    width: 450px;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
}

.legal-content {
    padding: 140px 60px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.legal-content p {
    font-size: 15px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-content ul li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #555;
}

.cookie-table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
}

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

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

@media (max-width: 768px) {
    .floating-nav {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 100px 30px 60px;
    }

    .hero-image-offset {
        transform: translateY(0);
        width: 100%;
    }

    .offset-container,
    .approach-layout,
    .story-layout-asymmetric,
    .service-content-layout,
    .contact-layout-offset,
    .thanks-section {
        flex-direction: column;
    }

    .vision-image,
    .approach-image-stack,
    .story-image-offset,
    .service-visual,
    .contact-visual,
    .thanks-visual {
        width: 100%;
        transform: none;
    }

    .section-header-offset,
    .form-container,
    .approach-content-offset {
        margin-left: 0;
        margin-right: 0;
    }

    .services-grid-irregular,
    .values-grid-irregular {
        flex-direction: column;
    }

    .card-large,
    .card-small,
    .card-medium,
    .value-wide,
    .value-narrow,
    .value-offset {
        flex: 1 1 100%;
    }

    .testimonial-left,
    .testimonial-right {
        margin-left: 0;
        margin-right: 0;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

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