:root {
    --primary-green: #2d5016;
    --accent-olive: #6b7c3a;
    --warm-cream: #f5f1e8;
    --soft-beige: #e8dcc8;
    --dark-charcoal: #2a2a2a;
    --light-gray: #f9f9f9;
    --border-light: #e0e0e0;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --white: #ffffff;
}

* {
    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.7;
    color: var(--text-primary);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-charcoal);
}

h1 {
    font-size: 2.8rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.2rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.2rem;
    color: var(--text-secondary);
}

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

a:hover {
    color: var(--accent-olive);
}

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

section {
    padding: 80px 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-charcoal);
    color: var(--white);
    padding: 20px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
    color: var(--white);
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: var(--accent-olive);
}

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

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

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

.nav-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-green);
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-green);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-charcoal);
    transition: all 0.3s ease;
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 20px 80px;
}

.hero-content-offset {
    max-width: 600px;
    position: relative;
    z-index: 2;
    margin-left: 10%;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-visual-stack {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 450px;
    height: 550px;
}

.visual-block {
    position: absolute;
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.visual-block.block-1 {
    width: 350px;
    height: 450px;
    top: 0;
    left: 0;
    background-image: url('https://images.unsplash.com/photo-1556910103-1c02745aae4d?w=800&h=1000&fit=crop');
    z-index: 1;
}

.visual-block.block-2 {
    width: 280px;
    height: 350px;
    bottom: 0;
    right: 0;
    background-color: var(--accent-olive);
    background-image: url('https://images.unsplash.com/photo-1556911220-bff31c812dba?w=600&h=800&fit=crop');
    z-index: 2;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-primary {
    background: var(--primary-green);
    color: var(--white);
}

.cta-primary:hover {
    background: var(--accent-olive);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45,80,22,0.3);
}

.cta-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.cta-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
}

.intro-overlap {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

.intro-text-narrow {
    flex: 1;
    max-width: 550px;
    padding-left: 8%;
}

.intro-text-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.intro-image-break {
    flex: 1;
    position: relative;
    margin-top: -60px;
}

.intro-image-break img {
    width: 100%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.services-grid-asymmetric {
    background: var(--warm-cream);
    padding: 100px 20px;
}

.section-header-offset {
    max-width: 500px;
    margin-left: 15%;
    margin-bottom: 60px;
}

.section-header-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
}

.section-header-offset p {
    font-size: 1.2rem;
}

.services-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.service-card.card-large {
    flex: 1 1 calc(45% - 15px);
    min-width: 350px;
}

.service-card.card-medium {
    flex: 1 1 calc(35% - 15px);
    min-width: 300px;
}

.service-card.card-small {
    flex: 1 1 calc(30% - 15px);
    min-width: 280px;
}

.service-visual {
    width: 100%;
    height: 180px;
    background: var(--soft-beige);
    border-radius: 6px;
    margin-bottom: 25px;
    background-size: cover;
    background-position: center;
}

.service-card.card-large .service-visual {
    height: 220px;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--dark-charcoal);
}

.service-card p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.service-meta {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
}

.duration {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.btn-service {
    width: 100%;
    padding: 14px;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: var(--accent-olive);
}

.philosophy-split {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1300px;
    margin: 0 auto;
}

.philosophy-text {
    flex: 1;
    padding-right: 40px;
}

.philosophy-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.philosophy-visual-stack {
    flex: 1;
    position: relative;
}

.philosophy-visual-stack img {
    width: 100%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-radius: 4px;
}

.link-inline {
    font-weight: 600;
    border-bottom: 2px solid var(--primary-green);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.link-inline:hover {
    border-bottom-color: var(--accent-olive);
}

.testimonials-irregular {
    background: var(--light-gray);
    padding: 100px 20px;
}

.testimonials-header {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 70px;
}

.testimonials-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.testimonial {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    max-width: 400px;
}

.testimonial-offset-1 {
    transform: translateY(-20px);
}

.testimonial-offset-2 {
    transform: translateY(20px);
}

.testimonial-offset-3 {
    transform: translateY(0);
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.process-overlap {
    background: var(--warm-cream);
    padding: 100px 20px;
}

.process-content {
    max-width: 1000px;
    margin: 0 auto;
}

.process-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.step-number {
    display: inline-block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-olive);
    margin-bottom: 15px;
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.cta-offset {
    padding: 120px 20px;
}

.cta-content-irregular {
    max-width: 700px;
    margin-left: 20%;
    text-align: left;
}

.cta-content-irregular h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

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

.form-section {
    padding: 80px 20px;
    background: var(--light-gray);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

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

.selected-service {
    text-align: center;
    font-size: 1.1rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 2rem;
    padding: 15px;
    background: var(--warm-cream);
    border-radius: 6px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-light);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit,
.btn-cancel {
    padding: 14px 40px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 15px;
}

.btn-submit {
    background: var(--primary-green);
    color: var(--white);
}

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

.btn-cancel {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--border-light);
}

.btn-cancel:hover {
    background: var(--light-gray);
}

.footer-asymmetric {
    background: var(--dark-charcoal);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
}

.footer-links {
    display: flex;
    gap: 60px;
}

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

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

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

.footer-column ul li a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 998;
}

.btn-sticky {
    padding: 16px 32px;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(45,80,22,0.4);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: var(--accent-olive);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(45,80,22,0.5);
}

.page-hero-offset {
    padding: 150px 20px 80px;
    background: var(--warm-cream);
}

.hero-text-block {
    max-width: 800px;
    margin-left: 15%;
}

.hero-text-block h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}

.hero-text-block p {
    font-size: 1.3rem;
}

.story-irregular {
    padding: 100px 20px;
}

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

.story-block {
    flex: 1;
}

.story-block h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.story-image {
    flex: 1;
}

.story-image.offset-right {
    transform: translateX(30px);
}

.story-image img {
    width: 100%;
    box-shadow: 0 15px 45px rgba(0,0,0,0.12);
    border-radius: 4px;
}

.philosophy-layers {
    background: var(--light-gray);
    padding: 100px 20px;
}

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

.philosophy-content h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 60px;
}

.philosophy-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.philosophy-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 40px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.philosophy-item.item-offset-1 {
    transform: translateY(-20px);
}

.philosophy-item.item-offset-2 {
    transform: translateY(0);
}

.philosophy-item.item-offset-3 {
    transform: translateY(20px);
}

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

.team-asymmetric {
    padding: 100px 20px;
}

.team-header {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 70px;
}

.team-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    background: var(--warm-cream);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.team-member.member-large {
    flex: 1 1 calc(50% - 20px);
    min-width: 350px;
}

.team-member.member-medium {
    flex: 1 1 calc(40% - 20px);
    min-width: 300px;
}

.team-member.member-small {
    flex: 1 1 calc(35% - 20px);
    min-width: 280px;
}

.member-visual {
    width: 100%;
    height: 280px;
    background: var(--soft-beige);
    border-radius: 6px;
    margin-bottom: 25px;
}

.team-member h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.member-role {
    font-weight: 600;
    color: var(--accent-olive);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.values-overlap {
    background: var(--warm-cream);
    padding: 100px 20px;
}

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

.values-content h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.values-list {
    list-style: none;
}

.values-list li {
    margin-bottom: 35px;
    padding-left: 0;
}

.values-list strong {
    display: block;
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.values-list span {
    display: block;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.credentials-split {
    padding: 100px 20px;
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1300px;
    margin: 0 auto;
}

.credentials-text {
    flex: 1;
}

.credentials-text h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.credentials-visual {
    flex: 1;
}

.credentials-visual img {
    width: 100%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-radius: 4px;
}

.mission-block {
    background: var(--primary-green);
    color: var(--white);
    padding: 100px 20px;
}

.mission-content-offset {
    max-width: 800px;
    margin-left: 20%;
}

.mission-content-offset h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.mission-content-offset p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
}

.cta-about {
    padding: 100px 20px;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-card {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    padding: 60px 40px;
    background: var(--white);
    border-radius: 8px;
}

.service-detail-card:nth-child(even) {
    background: var(--warm-cream);
}

.service-detail-card.card-offset-left {
    margin-left: 5%;
}

.service-detail-card.card-offset-right {
    margin-right: 5%;
}

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

.service-detail-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.service-intro {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.service-details h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.service-details ul {
    margin-bottom: 1.5rem;
    padding-left: 25px;
}

.service-details li {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin: 2.5rem 0;
    padding: 20px;
    background: var(--soft-beige);
    border-radius: 6px;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.price-note {
    font-size: 1rem;
    color: var(--text-secondary);
}

.service-detail-visual {
    flex: 1;
}

.service-detail-visual img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.comparison-offset {
    padding: 80px 20px;
    background: var(--light-gray);
}

.comparison-content {
    max-width: 700px;
    margin-left: 15%;
}

.comparison-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.comparison-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.contact-split {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    max-width: 1300px;
    margin: 0 auto;
}

.contact-info-offset {
    flex: 1;
    padding-right: 40px;
}

.contact-info-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    margin-bottom: 40px;
}

.contact-method h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-green);
}

.contact-method p {
    margin-bottom: 0.5rem;
}

.contact-method a {
    font-weight: 600;
}

.contact-note {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
}

.contact-visual-stack {
    flex: 1;
}

.contact-visual-stack img {
    width: 100%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-radius: 4px;
}

.faq-irregular {
    background: var(--warm-cream);
    padding: 100px 20px;
}

.faq-irregular h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 60px;
}

.faq-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.faq-item {
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    flex: 1 1 calc(50% - 18px);
    min-width: 300px;
    max-width: 550px;
}

.faq-item.faq-offset-1 {
    transform: translateY(-15px);
}

.faq-item.faq-offset-2 {
    transform: translateY(15px);
}

.faq-item.faq-offset-3 {
    transform: translateY(0);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.faq-item p {
    font-size: 1.05rem;
}

.location-context {
    padding: 80px 20px;
}

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

.location-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.cta-contact {
    background: var(--light-gray);
    padding: 100px 20px;
}

.legal-page {
    padding: 150px 20px 80px;
    background: var(--light-gray);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

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

.legal-updated {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
}

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

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.cookies-table th {
    background: var(--warm-cream);
    font-weight: 600;
    color: var(--primary-green);
}

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 20px 80px;
}

.thanks-content-offset {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.service-confirmation {
    font-size: 1.1rem;
    color: var(--primary-green);
    font-weight: 600;
    padding: 15px;
    background: var(--warm-cream);
    border-radius: 6px;
    display: inline-block;
}

.next-steps-irregular {
    background: var(--warm-cream);
    padding: 100px 20px;
}

.next-steps-irregular h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
}

.steps-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.step-block {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.step-block.step-offset-1 {
    transform: translateY(-20px);
}

.step-block.step-offset-2 {
    transform: translateY(20px);
}

.step-block.step-offset-3 {
    transform: translateY(0);
}

.step-marker {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-olive);
    margin-bottom: 15px;
}

.step-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.thanks-info {
    padding: 80px 20px;
}

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

.info-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.info-content p {
    font-size: 1.1rem;
}

.explore-more {
    background: var(--light-gray);
    padding: 80px 20px;
}

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

.explore-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.explore-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.explore-link {
    padding: 14px 30px;
    background: var(--white);
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

@media (max-width: 1024px) {
    .hero-visual-stack {
        width: 350px;
        height: 450px;
    }

    .visual-block.block-1 {
        width: 280px;
        height: 350px;
    }

    .visual-block.block-2 {
        width: 220px;
        height: 280px;
    }

    .intro-overlap,
    .philosophy-split,
    .story-content,
    .credentials-split,
    .contact-split {
        flex-direction: column;
    }

    .service-detail-card {
        flex-direction: column;
        padding: 40px 30px;
    }

    .service-detail-card.card-offset-left,
    .service-detail-card.card-offset-right {
        margin-left: 0;
        margin-right: 0;
    }

    .cta-content-irregular,
    .comparison-content,
    .mission-content-offset {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        top: 20px;
        padding: 15px 25px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        display: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

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

    .hero-asymmetric {
        flex-direction: column;
        padding: 120px 20px 60px;
    }

    .hero-content-offset {
        margin-left: 0;
        text-align: center;
    }

    .hero-visual-stack {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 50px;
        width: 100%;
        max-width: 350px;
        height: 400px;
    }

    .section-header-offset,
    .hero-text-block {
        margin-left: 0;
    }

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

    .team-member.member-large,
    .team-member.member-medium,
    .team-member.member-small {
        flex: 1 1 100%;
    }

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

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

    .testimonial-offset-1,
    .testimonial-offset-2,
    .testimonial-offset-3 {
        transform: translateY(0);
    }

    .faq-item {
        flex: 1 1 100%;
    }

    .faq-item.faq-offset-1,
    .faq-item.faq-offset-2,
    .faq-item.faq-offset-3 {
        transform: translateY(0);
    }

    .step-block.step-offset-1,
    .step-block.step-offset-2,
    .step-block.step-offset-3 {
        transform: translateY(0);
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .btn-sticky {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

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

    .legal-content {
        padding: 40px 30px;
    }

    section {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .nav-floating {
        padding: 12px 20px;
        width: 95%;
    }

    .nav-brand {
        font-size: 1.1rem;
    }

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

    .form-container {
        padding: 35px 25px;
    }

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

    .explore-link {
        width: 100%;
    }
}