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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #c9a87c;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

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

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

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

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.hero-asymmetric {
    margin-top: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 4rem 5%;
}

.hero-image-block {
    position: absolute;
    right: 0;
    top: 10%;
    width: 55%;
    height: 70vh;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    overflow: hidden;
}

.hero-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-offset {
    position: relative;
    z-index: 10;
    max-width: 550px;
    background: var(--bg-white);
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: translateX(5%);
}

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

.hero-text-offset p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.intro-overlap {
    padding: 8rem 5%;
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    position: relative;
}

.intro-card {
    flex: 1;
    max-width: 600px;
}

.intro-card.left-offset {
    transform: translateX(-8%);
    padding: 3rem;
    background: var(--bg-light);
}

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

.intro-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.intro-image {
    flex: 1;
    max-width: 450px;
}

.intro-image.right-float {
    transform: translateY(10%) rotate(2deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.offset-feature {
    padding: 6rem 5%;
    display: flex;
    gap: 5rem;
    align-items: center;
    background: var(--bg-white);
}

.feature-visual {
    flex: 1;
    position: relative;
    transform: translateX(-10%);
}

.feature-visual img {
    width: 100%;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
}

.feature-tag {
    position: absolute;
    top: 30px;
    right: -20px;
    background: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    font-weight: 600;
    transform: rotate(3deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-content.diagonal-placement {
    flex: 1;
    transform: translateY(-5%);
}

.feature-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.feature-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.link-arrow {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.services-asymmetric {
    padding: 8rem 5%;
    background: var(--bg-light);
}

.services-header {
    margin-bottom: 4rem;
}

.services-header.offset-right {
    margin-left: 15%;
    max-width: 600px;
}

.services-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.services-header p {
    font-size: 1.15rem;
    color: var(--text-light);
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-card.large-card {
    width: calc(60% - 1rem);
}

.service-card.small-offset {
    width: calc(40% - 1rem);
    transform: translateY(3rem);
}

.service-card.medium-card {
    width: calc(50% - 1rem);
}

.service-card.tall-card {
    width: calc(30% - 1rem);
}

.service-card.wide-card {
    width: calc(70% - 1rem);
}

.service-card.compact-card {
    width: calc(35% - 1rem);
}

.service-visual img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card.large-card .service-visual img,
.service-card.wide-card .service-visual img {
    height: 350px;
}

.service-card.tall-card .service-visual img {
    height: 400px;
}

.service-details {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.service-details p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex: 1;
}

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

.btn-select-service {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-select-service:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.diagonal-split {
    padding: 8rem 5%;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.reasons-offset {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.reason-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.reason-item.offset-slight {
    margin-left: 10%;
}

.reason-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    opacity: 0.3;
    line-height: 1;
}

.reason-text h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.reason-text p {
    color: var(--text-light);
    line-height: 1.7;
}

.split-visual.angled {
    flex: 1;
    transform: rotate(-2deg) translateY(-5%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-overlap {
    padding: 6rem 5%;
    background: var(--bg-light);
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card.floating {
    transform: translateY(-2rem);
}

.testimonial-card.offset-down {
    transform: translateY(3rem);
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-card cite {
    font-style: normal;
    color: var(--text-light);
    font-weight: 600;
}

.cta-irregular {
    padding: 8rem 5%;
    background: var(--primary-color);
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0% 100%);
}

.cta-content.slanted {
    text-align: center;
    color: white;
    max-width: 700px;
    margin: 0 auto;
}

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

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 3rem;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
}

.close-modal:hover {
    color: var(--text-dark);
}

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

.selected-service-info {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

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

.btn-submit {
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

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

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

.footer-main {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col.brand-col {
    flex: 1.5;
}

.footer-col h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

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

.footer-col p {
    line-height: 1.8;
    opacity: 0.9;
}

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

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

.footer-col ul li a {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 1.5rem 5%;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.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.95rem;
}

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

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

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

.btn-accept:hover {
    background: var(--secondary-color);
}

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-reject:hover {
    background: white;
    color: var(--primary-color);
}

.about-hero {
    margin-top: 80px;
    padding: 6rem 5%;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-hero.offset-layout {
    background: var(--bg-light);
}

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

.about-hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-hero-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
}

.about-hero-image {
    flex: 1;
}

.about-hero-image.diagonal-crop {
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.our-story {
    padding: 6rem 5%;
}

.our-story.irregular-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.story-block {
    background: white;
    padding: 2.5rem;
}

.story-block.wide {
    width: calc(60% - 1rem);
}

.story-block.small {
    width: calc(40% - 1rem);
}

.story-block.small.offset-up {
    transform: translateY(-3rem);
}

.story-block.tall {
    width: calc(50% - 1rem);
    background: var(--bg-light);
}

.story-block.medium {
    width: calc(50% - 1rem);
}

.story-block h2,
.story-block h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-block p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-asymmetric {
    padding: 6rem 5%;
    background: var(--bg-white);
}

.values-title.offset-left {
    font-size: 2.8rem;
    margin-bottom: 4rem;
    margin-left: 10%;
    color: var(--primary-color);
}

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

.value-card {
    width: calc(50% - 1.25rem);
    padding: 2.5rem;
    background: var(--bg-light);
}

.value-card.offset-right {
    transform: translateX(8%);
}

.value-card.offset-left {
    transform: translateX(-5%);
}

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

.value-card p {
    color: var(--text-light);
    line-height: 1.8;
}

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

.team-section.overlap-design {
    background: var(--bg-light);
}

.team-intro {
    flex: 1;
}

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

.team-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.team-visual {
    flex: 1;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.process-section {
    padding: 6rem 5%;
}

.process-section.irregular-flow h2 {
    font-size: 2.8rem;
    margin-bottom: 4rem;
    text-align: center;
    color: var(--primary-color);
}

.process-steps.offset-arrangement {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-step {
    width: calc(33.33% - 1.35rem);
    padding: 2rem;
    background: var(--bg-light);
}

.process-step.shift-down {
    transform: translateY(2rem);
}

.process-step.shift-up {
    transform: translateY(-2rem);
}

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

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

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-about {
    padding: 6rem 5%;
    background: var(--primary-color);
    text-align: center;
}

.cta-about.offset-cta {
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0% 95%);
}

.cta-about .cta-content {
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    margin: 0 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid white;
}

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

.btn-primary:hover {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.btn-secondary {
    background: transparent;
    color: white;
}

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

.services-hero {
    margin-top: 80px;
    padding: 6rem 5%;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.services-hero.asymmetric-hero {
    min-height: 60vh;
}

.services-hero-content {
    flex: 1;
}

.services-hero-content.offset-placement {
    transform: translateX(-5%);
}

.services-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.services-hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
}

.services-hero-visual {
    flex: 1;
}

.services-hero-visual.diagonal-frame {
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0% 100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

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

.service-detail-item.layout-offset-left .service-detail-visual {
    transform: translateX(-8%);
}

.service-detail-item.layout-offset-right .service-detail-content {
    order: -1;
}

.service-detail-item.layout-offset-right .service-detail-visual {
    transform: translateX(5%);
}

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

.service-detail-visual {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

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

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

.service-detail-content > p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: var(--text-light);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

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

.service-process.offset-layout h2 {
    font-size: 2.8rem;
    margin-bottom: 4rem;
    text-align: center;
    color: var(--primary-color);
}

.process-timeline.irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.timeline-item {
    width: calc(33.33% - 1.35rem);
    padding: 2rem;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.timeline-item.offset-down {
    transform: translateY(2rem);
}

.timeline-item.offset-up {
    transform: translateY(-2rem);
}

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

.timeline-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.services-cta {
    padding: 6rem 5%;
    background: var(--primary-color);
}

.services-cta.diagonal-cta {
    clip-path: polygon(0 8%, 100% 0, 100% 92%, 0% 100%);
}

.cta-inner {
    text-align: center;
    color: white;
    max-width: 700px;
    margin: 0 auto;
}

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

.cta-inner p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.contact-hero {
    margin-top: 80px;
    padding: 6rem 5%;
    background: var(--bg-light);
}

.contact-hero.offset-header {
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.contact-hero-content {
    max-width: 700px;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-hero-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-main {
    padding: 6rem 5%;
    display: flex;
    gap: 5rem;
}

.contact-main.asymmetric-layout {
    align-items: flex-start;
}

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

.contact-info-block.diagonal-placement {
    transform: translateX(-5%);
}

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

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

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

.contact-detail p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-detail a {
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-note {
    background: var(--bg-light);
    padding: 1.5rem;
    margin-top: 2rem;
}

.contact-note.offset-box {
    transform: rotate(-1deg);
}

.contact-note p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-visual-block {
    flex: 1;
    position: relative;
}

.contact-visual-block img {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.visual-caption {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
}

.visual-caption p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.location-section {
    padding: 6rem 5%;
    background: var(--bg-light);
    display: flex;
    gap: 4rem;
}

.location-section.irregular-split {
    align-items: center;
}

.location-text {
    flex: 1;
}

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

.location-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.location-map {
    flex: 1;
}

.map-placeholder {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-cta {
    padding: 6rem 5%;
    text-align: center;
}

.contact-cta.offset-cta-contact {
    background: white;
}

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

.contact-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-hero {
    margin-top: 80px;
    padding: 6rem 5%;
    display: flex;
    gap: 5rem;
    align-items: center;
    min-height: 80vh;
}

.thanks-hero.offset-layout {
    background: var(--bg-light);
}

.thanks-content {
    flex: 1.2;
}

.thanks-content.diagonal-frame {
    background: white;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    transform: translateX(-5%);
}

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

.thanks-lead {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.thanks-service-detail {
    background: var(--bg-light);
    padding: 1.5rem;
    margin-bottom: 3rem;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.steps-grid.irregular {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.step-item {
    flex: 1;
    padding: 1.5rem;
    background: var(--bg-light);
}

.step-item.offset-slight {
    transform: translateY(1.5rem);
}

.step-icon {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    opacity: 0.4;
    margin-bottom: 1rem;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.step-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

.thanks-visual {
    flex: 1;
}

.thanks-visual.offset-image {
    transform: translateY(5%) rotate(1deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.legal-page {
    margin-top: 80px;
    padding: 4rem 5%;
    min-height: 70vh;
}

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

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.last-updated {
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.legal-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-light);
}

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

.legal-content ul li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: var(--text-light);
}

.legal-content a {
    color: var(--secondary-color);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .services-grid-irregular {
        flex-direction: column;
    }

    .service-card,
    .service-card.large-card,
    .service-card.small-offset,
    .service-card.medium-card,
    .service-card.tall-card,
    .service-card.wide-card,
    .service-card.compact-card {
        width: 100%;
        transform: none;
    }

    .value-card {
        width: 100%;
        transform: none;
    }

    .process-steps.offset-arrangement,
    .steps-grid.irregular {
        flex-direction: column;
    }

    .process-step,
    .timeline-item,
    .step-item {
        width: 100%;
        transform: none;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
        padding: 2rem 5%;
    }

    .hero-image-block {
        position: relative;
        width: 100%;
        height: 300px;
        clip-path: none;
        margin-bottom: 2rem;
    }

    .hero-text-offset {
        transform: none;
        max-width: 100%;
        padding: 2rem;
    }

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

    .intro-overlap,
    .offset-feature,
    .diagonal-split,
    .about-hero,
    .services-hero,
    .service-detail-item,
    .team-section,
    .location-section,
    .thanks-hero,
    .contact-main {
        flex-direction: column;
        gap: 2rem;
    }

    .intro-card.left-offset,
    .feature-visual,
    .feature-content.diagonal-placement,
    .contact-info-block.diagonal-placement,
    .services-hero-content.offset-placement,
    .thanks-content.diagonal-frame {
        transform: none;
    }

    .intro-image.right-float,
    .split-visual.angled,
    .thanks-visual.offset-image {
        transform: none;
    }

    .testimonial-overlap {
        flex-direction: column;
    }

    .testimonial-card.floating,
    .testimonial-card.offset-down {
        transform: none;
    }

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

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

    .our-story.irregular-grid,
    .values-layout.staggered {
        flex-direction: column;
    }

    .story-block,
    .story-block.wide,
    .story-block.small,
    .story-block.tall,
    .story-block.medium {
        width: 100%;
        transform: none;
    }

    .service-detail-item.layout-offset-right .service-detail-content {
        order: 0;
    }

    .service-detail-visual {
        transform: none;
    }

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

    .values-title.offset-left,
    .services-header.offset-right {
        margin-left: 0;
    }

    .reason-item.offset-slight {
        margin-left: 0;
    }
}