:root {
    --font-primary: 'Poppins', sans-serif;
    --color-text: #4a4a4a;
    --color-primary: #1a1a1a;
    --color-background: #ffffff;
    --color-light-bg: #f9f9f9;
    --color-border: #e0e0e0;
    --header-height: 80px;
    --transition-speed: 0.4s;
    --container-width: 1200px;
}

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

html { font-size: 16px; scroll-behavior: smooth; scroll-padding-top: var(--header-height); -webkit-font-smoothing: antialiased; }

body { font-family: var(--font-primary); color: var(--color-text); background-color: var(--color-background); line-height: 1.8; overflow-x: hidden; }

h1, h2, h3, h4 { font-weight: 600; line-height: 1.3; color: var(--color-primary); }
h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
h4 { font-size: 1.1rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.05em; }

p { margin-bottom: 1rem; max-width: 65ch; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition-speed) ease; }
a:hover { color: #888; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }

.container { width: 90%; max-width: var(--container-width); margin: 0 auto; }
.content-section { padding: clamp(4rem, 10vw, 8rem) 0; }
.bg-light { background-color: var(--color-light-bg); }
.section-title { text-align: center; margin-bottom: 4rem; }
.section-title h2 { margin-bottom: 0.5rem; }
.section-title p { margin: 0 auto; font-size: 1.1rem; color: #777; }

.main-header { position: fixed; top: 0; left: 0; width: 100%; height: var(--header-height); background-color: rgba(255, 255, 255, 0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--color-border); z-index: 1000; }
.main-header .container { display: flex; justify-content: space-between; align-items: center; height: 100%; }
.logo-link img { height: 35px; }
.nav-list { display: flex; gap: 2.5rem; }
.nav-list a { font-weight: 500; font-size: 0.95rem; letter-spacing: 0.03em; text-transform: uppercase; }
.mobile-nav-toggle { display: none; background: none; border: none; width: 30px; height: 24px; z-index: 1001; }

.hero-section { min-height: calc(100vh - var(--header-height)); display: flex; align-items: center; padding: 4rem 0; margin-top: var(--header-height); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-image-container img { border-radius: 8px; }

.philosophy-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center; }
.philosophy-image-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.philosophy-image-stack img:first-child { margin-top: -2rem; }
.philosophy-image-stack img:last-child { margin-top: 2rem; }

.project-slider { position: relative; max-width: 900px; margin: auto; }
.slider-wrapper { position: relative; width: 100%; aspect-ratio: 16 / 10; overflow: hidden; border-radius: 8px; }
.slider-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 0.6s ease; }
.slider-slide.active { opacity: 1; z-index: 1; }
.slider-slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; color: white; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); }
.slide-caption h3 { color: white; }
.slider-controls { display: flex; justify-content: center; gap: 1rem; margin-top: 2rem; }
.slider-btn { background: var(--color-light-bg); border: 1px solid var(--color-border); width: 50px; height: 50px; border-radius: 50%; font-size: 1.5rem; transition: background-color var(--transition-speed) ease; }
.slider-btn:hover { background-color: #ddd; }

.services-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 4rem; align-items: start; }
.services-list { display: flex; flex-direction: column; gap: 2rem; }
.service-item { border-left: 3px solid var(--color-primary); padding-left: 2rem; }

.process-timeline { display: flex; flex-direction: column; gap: 5rem; }
.process-step { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.process-step:nth-child(even) .step-image { order: -1; }
.step-content span { font-size: 3rem; font-weight: 700; color: var(--color-border); display: block; margin-bottom: 0.5rem; }

.before-after-container { max-width: 900px; margin: auto; }
.before-after-slider { position: relative; width: 100%; aspect-ratio: 16/10; overflow: hidden; border-radius: 8px; cursor: col-resize; }
.image-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; }
.before-image { width: 50%; z-index: 1;}
.after-image img { display: block; height: 100%; width: 900px; max-width: none; object-fit: cover; }
.slider-handle { position: absolute; top: 0; left: 50%; width: 4px; height: 100%; background: white; transform: translateX(-50%); z-index: 10; pointer-events: none; }
.slider-handle div { width: 40px; height: 40px; border: 2px solid white; border-radius: 50%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }

.tabs-container { max-width: 900px; margin: 0 auto; }
.tabs-nav { display: flex; justify-content: center; gap: 1rem; margin-bottom: 3rem; border-bottom: 1px solid var(--color-border); }
.tab-link { background: none; border: none; padding: 1rem 1.5rem; font-size: 1rem; font-weight: 500; border-bottom: 3px solid transparent; transform: translateY(1px); }
.tab-link.active { border-bottom-color: var(--color-primary); }
.tab-pane { display: none; grid-template-columns: 1fr 2fr; gap: 2rem; align-items: center; }
.tab-pane.active { display: grid; }
.tab-pane img { border-radius: 4px; }

.team-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: center; }
.team-image img { border-radius: 4px; }

.faq-accordion { max-width: 800px; margin: auto; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-question { width: 100%; text-align: left; background: none; border: none; padding: 1.5rem 0; font-size: 1.2rem; font-weight: 500; display: flex; justify-content: space-between; align-items: center; }
.faq-question::after { content: '+'; font-size: 1.8rem; transition: transform var(--transition-speed) ease; }
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s ease-in-out; }
.faq-answer p { padding: 0 0 1.5rem 0; }

.cta-section { background-color: var(--color-primary); color: white; padding: clamp(4rem, 10vw, 6rem) 0; }
.cta-content { text-align: center; max-width: 700px; margin: 0 auto; }
.cta-content h2 { color: white; }
.cta-content p { color: #ccc; margin-left: auto; margin-right: auto; }
.cta-button { display: inline-block; background-color: white; color: var(--color-primary); padding: 0.8rem 2.5rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; border-radius: 50px; margin-top: 1rem; transition: transform var(--transition-speed) ease, background-color var(--transition-speed) ease; }
.cta-button:hover { background-color: #eee; transform: translateY(-3px); }

.main-footer { background-color: var(--color-primary); color: #ccc; padding: 4rem 0 2rem 0; }
.footer-top { text-align: center; margin-bottom: 3rem; }
.footer-top .footer-logo img { height: 40px; filter: brightness(0) invert(1); margin: 0 auto 1rem; }
.footer-top p { color: #888; max-width: 40ch; margin: auto; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; border-top: 1px solid #444; border-bottom: 1px solid #444; padding: 3rem 0; }
.footer-column h4 { color: white; }
.footer-column ul { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-column a { color: #ccc; }
.footer-column a:hover { color: white; }
.footer-bottom { text-align: center; margin-top: 2rem; font-size: 0.9rem; color: #888; }

.reveal-up { opacity: 0; transform: translateY(50px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.reveal-up.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
    .philosophy-grid, .services-layout, .team-layout { grid-template-columns: 1fr; }
    .process-step, .process-step:nth-child(even) { grid-template-columns: 1fr; }
    .process-step .step-image, .process-step:nth-child(even) .step-image { order: 0; }
    .services-layout .services-intro { order: -1; }
}

@media (max-width: 768px) {
    body.nav-open { overflow: hidden; }
    .hero-grid { grid-template-columns: 1fr; }
    .nav-list { position: fixed; top: 0; right: 0; width: 80%; height: 100vh; background-color: var(--color-background); flex-direction: column; justify-content: center; align-items: center; gap: 2rem; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1); }
    .nav-list.active { transform: translateX(0); }
    .nav-list a { font-size: 1.2rem; }
    .mobile-nav-toggle { display: flex; flex-direction: column; justify-content: space-around; }
    .hamburger-line { width: 100%; height: 3px; background-color: var(--color-primary); border-radius: 3px; transition: all 0.4s; transform-origin: center; }
    .nav-open .hamburger-line:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
    .nav-open .hamburger-line:nth-child(2) { opacity: 0; }
    .nav-open .hamburger-line:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }
    .philosophy-image-stack { grid-template-columns: 1fr; }
    .philosophy-image-stack img:first-child, .philosophy-image-stack img:last-child { margin-top: 0; }
    .tab-pane { grid-template-columns: 1fr; }
    .tab-pane img { order: -1; }
    .footer-nav { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 320px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .content-section { padding: 3rem 0; }
    .main-header { --header-height: 70px; }
    .slide-caption { padding: 1rem; }
    .slide-caption h3 { font-size: 1.2rem; }
    .slider-btn { width: 40px; height: 40px; font-size: 1.2rem; }
    .tabs-nav { flex-direction: column; gap: 0; }
    .tab-link { width: 100%; text-align: center; }
    .footer-nav { padding: 2rem 0; }
}













.page-hero-section { padding: clamp(4rem, 10vw, 8rem) 0; margin-top: var(--header-height); }
.page-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.page-hero-content h1 { margin-bottom: 1.5rem; }
.page-hero-image img { border-radius: 8px; }

.tenets-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.tenet-item { background-color: var(--color-background); padding: 2rem; border-radius: 8px; border: 1px solid var(--color-border); }
.tenet-number { font-size: 2rem; font-weight: 700; color: var(--color-border); display: block; margin-bottom: 1rem; }
.tenet-item h3 { margin-bottom: 1rem; }
.tenet-item img { margin-top: 2rem; border-radius: 4px; }

.two-col-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.two-col-layout.reverse .two-col-text { order: 1; }
.two-col-image img { border-radius: 8px; }

.light-switch-section { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: center; }
.light-switch-controls { margin-top: 2rem; display: flex; gap: 1rem; }
.light-switch-btn { background: var(--color-background); border: 1px solid var(--color-border); padding: 0.7rem 1.5rem; border-radius: 50px; font-weight: 500; transition: all var(--transition-speed) ease; }
.light-switch-btn.active { background: var(--color-primary); color: white; border-color: var(--color-primary); }
.light-switch-image-wrapper img { border-radius: 8px; transition: opacity 0.5s ease-in-out; }

.masonry-section { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: start; }
.masonry-grid { column-count: 2; column-gap: 1rem; }
.masonry-item { margin-bottom: 1rem; break-inside: avoid; }
.masonry-item img { border-radius: 4px; }

.details-section { display: grid; grid-template-columns: 1.5fr 1fr; grid-template-rows: auto auto; gap: 2rem; align-items: center; }
.details-main-image { grid-row: 1 / 3; }
.details-main-image img { border-radius: 8px; }
.details-thumb-1, .details-thumb-2 { grid-column: 2 / 3; }
.details-thumb-1 img, .details-thumb-2 img { border-radius: 4px; }
.details-text { grid-row: 1 / 2; grid-column: 2 / 3; align-self: end; }

.gallery-container { max-width: 1000px; margin: 0 auto; }
.gallery-filters { display: flex; justify-content: center; gap: 1rem; margin-bottom: 3rem; }
.filter-btn { background: none; border: 1px solid var(--color-border); padding: 0.5rem 1.5rem; border-radius: 50px; font-weight: 500; transition: all var(--transition-speed) ease; }
.filter-btn.active { background: var(--color-primary); color: white; border-color: var(--color-primary); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.gallery-item { transition: transform 0.3s ease, opacity 0.3s ease; }
.gallery-item.hide { transform: scale(0.9); opacity: 0; display: none; }
.gallery-item img { border-radius: 4px; width: 100%; height: 100%; object-fit: cover; }

.quote-section { background-color: var(--color-light-bg); padding: clamp(4rem, 10vw, 8rem) 0; text-align: center; }
.quote-section blockquote { font-size: clamp(1.5rem, 3vw, 2.2rem); max-width: 800px; margin: 0 auto; line-height: 1.6; font-weight: 500; color: var(--color-primary); }

@media (max-width: 1024px) {
    .two-col-layout, .two-col-layout.reverse { grid-template-columns: 1fr; }
    .two-col-layout.reverse .two-col-text { order: 0; }
    .light-switch-section { grid-template-columns: 1fr; }
    .masonry-section { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .page-hero-grid { grid-template-columns: 1fr; }
    .page-hero-image { order: -1; }
    .details-section { grid-template-columns: 1fr; grid-template-rows: auto; }
    .details-main-image, .details-text, .details-thumb-1, .details-thumb-2 { grid-column: auto; grid-row: auto; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .masonry-grid { column-count: 1; }
    .gallery-filters { flex-wrap: wrap; }
    .gallery-grid { grid-template-columns: 1fr; }
}












body.lightbox-active { overflow: hidden; }


.projects-hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    margin-top: var(--header-height);
}

.projects-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}
.projects-hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.85) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    z-index: -1;
}

.projects-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.projects-hero-section .container {
    max-width: 800px;
}

.projects-hero-section h1,
.projects-hero-section p {
    text-shadow: 0px 1px 6px rgba(0, 0, 0, 0.7);
}

.projects-hero-section h1 {
    color: white;
}

.projects-hero-section p {
    color: #f0f0f0; 
    max-width: 60ch;
    margin: 1rem auto 0;
}

.project-filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin-bottom: 4rem; }
.project-filter-btn { background: none; border: 1px solid var(--color-border); padding: 0.5rem 1.5rem; border-radius: 50px; font-weight: 500; cursor: pointer; transition: all var(--transition-speed) ease; }
.project-filter-btn.active { background: var(--color-primary); color: white; border-color: var(--color-primary); }

.projects-grid { display: flex; flex-direction: column; gap: clamp(4rem, 10vw, 8rem); }
.project-case-study { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; opacity: 1; transition: opacity 0.4s ease; }
.project-case-study.hide { display: none; }
.project-case-study.reverse .project-image { order: 1; }
.project-image img { border-radius: 8px; }
.project-description h3 { margin-bottom: 1.5rem; }

.details-gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.details-item { overflow: hidden; border-radius: 4px; }
.details-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1 / 1; cursor: pointer; transition: transform var(--transition-speed) ease; }
.details-item img:hover { transform: scale(1.05); }

.transformation-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; }
.before-after-container {
    max-width: 900px;
    margin: auto;
}
.before-after-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 8px;
    cursor: col-resize;
}
.before-after-slider .image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.before-after-slider .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: none; 
}
.before-after-slider .before-image {
    width: 50%;
    z-index: 1;
}
.before-after-slider .slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: white;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
}
.before-after-slider .slider-handle div {
    width: 40px;
    height: 40px;
    border: 2px solid white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.ba-caption {
    text-align: center;
    margin-top: 2rem;
}
.ba-caption p {
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
}
.more-projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); grid-auto-rows: 280px; gap: 1.5rem; }
.more-projects-item { position: relative; overflow: hidden; border-radius: 8px; transition: opacity 0.4s ease; }
.more-projects-item.hide { display: none; }
.grid-span-row-2 { grid-row: span 2; }
.grid-span-col-2 { grid-column: span 2; }
.more-projects-item img { width: 100%; height: 100%; object-fit: cover; }
.more-projects-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); padding: 3rem 1.5rem 1.5rem; color: white; transform: translateY(100%); transition: transform 0.4s ease-out; }
.more-projects-item:hover .more-projects-overlay { transform: translateY(0); }
.more-projects-overlay span { font-size: 1.2rem; font-weight: 600; }

.testimonial-section { background-color: var(--color-light-bg); padding: clamp(4rem, 10vw, 8rem) 0; }
.testimonial-slider { position: relative; max-width: 800px; margin: 0 auto; overflow: hidden; text-align: center; }
.testimonial-slides { display: flex; transition: transform 0.5s ease-in-out; }
.testimonial-slide { flex: 0 0 100%; width: 100%; padding: 0 2rem; }
.testimonial-slide blockquote { font-size: clamp(1.2rem, 2.5vw, 1.8rem); line-height: 1.6; font-weight: 500; color: var(--color-primary); margin-bottom: 1.5rem; }
.testimonial-slide cite { font-style: normal; font-weight: 600; }
.testimonial-controls { display: flex; justify-content: center; gap: 1rem; margin-top: 2rem; }
.testimonial-btn { background: var(--color-background); border: 1px solid var(--color-border); width: 50px; height: 50px; border-radius: 50%; font-size: 1.5rem; transition: background-color var(--transition-speed) ease; }
.testimonial-btn:hover { background-color: #ddd; }

.lightbox { position: fixed; z-index: 2000; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.9); display: none; justify-content: center; align-items: center; cursor: pointer; padding: 2rem; }
.lightbox.active { display: flex; }
.lightbox-content { max-width: 90%; max-height: 85%; object-fit: contain; cursor: default; }
.lightbox-close { position: absolute; top: 2rem; right: 2rem; font-size: 3rem; color: white; cursor: pointer; line-height: 1; }
.lightbox-caption { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); color: #ccc; text-align: center; width: 80%; }

@media (max-width: 1024px) {
    .more-projects-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
}

@media (max-width: 768px) {
    .project-case-study, .project-case-study.reverse { grid-template-columns: 1fr; }
    .project-case-study.reverse .project-image { order: 0; }
    .transformation-layout { grid-template-columns: 1fr; }
    .more-projects-grid { grid-auto-rows: 250px; }
    .grid-span-col-2 { grid-column: span 1; }
    .grid-span-row-2 { grid-row: span 1; }
}
.transformation-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.transformation-visual {
    text-align: center;
}

.image-flipper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.image-flipper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
}

.image-flipper img.active {
    opacity: 1;
}

.transformation-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.transformation-btn {
    background: none;
    border: 1px solid var(--color-border);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

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

@media (max-width: 768px) {
    .transformation-layout {
        grid-template-columns: 1fr;
    }
}












.services-hero-section { margin-top: var(--header-height); padding: clamp(4rem, 10vw, 8rem) 0; }
.services-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.services-hero-image img { border-radius: 8px; }

.core-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.core-service-item { background: var(--color-background); border-radius: 8px; text-align: center; padding: 2rem; border: 1px solid var(--color-border); }
.core-service-item img { border-radius: 4px; margin-bottom: 1.5rem; aspect-ratio: 4/3; object-fit: cover; }
.core-service-item h3 { margin-bottom: 0.5rem; }
.core-service-item:nth-child(2) { transform: translateY(20px); }

.deep-dive-section { position: relative; max-width: 800px; margin: 0 auto; }
.deep-dive-section::before { content: '01'; position: absolute; top: -2rem; left: -4rem; font-size: 8rem; font-weight: 700; color: var(--color-light-bg); z-index: -1; }
.section-supertitle { display: block; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.deep-dive-content ul { list-style: none; margin-top: 2rem; padding-left: 1.5rem; border-left: 2px solid var(--color-border); }
.deep-dive-content li { margin-bottom: 1rem; }

.collaboration-section { display: grid; grid-template-columns: 1fr 0.6fr; gap: 4rem; align-items: center; }
.collaboration-image img { border-radius: 8px; }

.services-tabs-section { max-width: 800px; margin: 0 auto; }
.services-tabs-nav { display: flex; justify-content: center; gap: 1rem; margin-bottom: 3rem; border-bottom: 1px solid var(--color-border); }
.services-tabs-nav .tab-link { background: none; border: none; padding: 1rem 1.5rem; font-size: 1.1rem; font-weight: 500; border-bottom: 3px solid transparent; transform: translateY(1px); cursor: pointer; }
.services-tabs-nav .tab-link.active { border-bottom-color: var(--color-primary); }
.services-tabs-content .tab-pane { display: none; }
.services-tabs-content .tab-pane.active { display: block; }
.services-tabs-content h3 { margin-bottom: 1rem; text-align: center; }
.services-tabs-content p { max-width: 65ch; margin: 0 auto; text-align: center; }

.investment-section { display: grid; grid-template-columns: 1fr 1.5fr 1fr; gap: 2rem; align-items: center; }
.investment-text { text-align: center; }
.investment-image-1 img, .investment-image-2 img { border-radius: 8px; }
.investment-image-1 { transform: translateY(-20px); }
.investment-image-2 { transform: translateY(20px); }

.scope-section { text-align: center; }
.scope-section h2, .scope-section p { max-width: 700px; margin-left: auto; margin-right: auto; }

.outcome-section { text-align: center; background-image: radial-gradient(circle, #fdfdfd, #f9f9f9); }
.outcome-section h2, .outcome-section p { max-width: 700px; margin-left: auto; margin-right: auto; }

.simple-process-section { max-width: 900px; margin: 0 auto; }
.simple-process-list { list-style: none; display: flex; justify-content: space-between; gap: 2rem; text-align: center; }
.simple-process-list li { flex: 1; border-top: 2px solid var(--color-border); padding-top: 1.5rem; }
.simple-process-list span { font-size: 1.5rem; font-weight: 600; color: var(--color-primary); display: block; margin-bottom: 0.5rem; }

@media (max-width: 768px) {
    .services-hero-grid { grid-template-columns: 1fr; }
    .services-hero-image { order: -1; }
    .core-service-item:nth-child(2) { transform: none; }
    .collaboration-section { grid-template-columns: 1fr; }
    .investment-section { grid-template-columns: 1fr; }
    .investment-image-1, .investment-image-2 { transform: none; }
    .simple-process-list { flex-direction: column; align-items: stretch; }
}
.focus-layout {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
    gap: 2rem;
}

.focus-text-box {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
    background-color: var(--color-background);
    padding: clamp(1.5rem, 4vw, 3rem);
    border: 1px solid var(--color-border);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    z-index: 2;
    border-radius: 4px;
}

.focus-image {
    grid-column: 7 / 13;
    grid-row: 1 / 2;
    z-index: 1;
}

.focus-image img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .focus-layout {
        grid-template-columns: 1fr;
    }

    .focus-text-box {
        grid-column: 1 / -1;
        grid-row: 2 / 3;
        margin-top: -3rem; 
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .focus-image {
        grid-column: 1 / -1;
        grid-row: 1 / 2;
    }
}
.outcome-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.outcome-title {
    grid-column: 1 / 2;
}

.outcome-quote {
    grid-column: 1 / 2;
    border-left: 3px solid var(--color-primary);
    padding-left: 2rem;
}

.outcome-quote p {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-primary);
}

.outcome-text {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
}
@media (max-width: 768px) {
    .outcome-layout {
        grid-template-columns: 1fr; 
        gap: 2rem;
    }

    .outcome-text {
        grid-row: auto;
        grid-column: auto; 
    }
}


















.process-hero-section { margin-top: var(--header-height); padding: clamp(4rem, 10vw, 8rem) 0; text-align: left; }
.process-hero-section .container { max-width: 800px; }
.process-hero-section h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); }
.process-hero-section p { font-size: 1.1rem; color: var(--color-text); max-width: 60ch; }

.process-principles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.flip-card { perspective: 1000px; background-color: transparent; aspect-ratio: 3/4; cursor: pointer; }
.flip-card-inner { position: relative; width: 100%; height: 100%; transition: transform 0.8s; transform-style: preserve-3d; }
.flip-card.is-flipped .flip-card-inner { transform: rotateY(180deg); }
.flip-card-front, .flip-card-back { position: absolute; width: 100%; height: 100%; -webkit-backface-visibility: hidden; backface-visibility: hidden; border-radius: 8px; overflow: hidden; }
.flip-card-front { color: white; display: flex; align-items: flex-end; padding: 2rem; }
.flip-card-front::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 50%); }
.flip-card-front img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; }
.flip-card-front h3 { z-index: 1; font-size: 1.8rem;  color: white;  }
.flip-card-back {
    background-color: var(--color-primary);
    color: white;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}


.flip-card-back h4 {
    color: white;
    margin-bottom: 1rem;
}

.process-timeline-section { position: relative; max-width: 800px; margin: 3rem auto 0; }
.process-timeline-section::before { content: ''; position: absolute; top: 0; left: 30px; height: 100%; width: 2px; background: var(--color-border); }
.timeline-item { position: relative; padding-left: 80px; margin-bottom: 4rem; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before { content: ''; position: absolute; top: 5px; left: 16px; width: 30px; height: 30px; border-radius: 50%; background: var(--color-light-bg); border: 2px solid var(--color-border); z-index: 1; }
.timeline-item h3 { margin-bottom: 0.5rem; }

.client-role-section { display: grid; grid-template-columns: 1.5fr 1fr; gap: 4rem; align-items: center; }
.client-role-aside { align-self: flex-start; border-left: 3px solid var(--color-primary); padding-left: 2rem; }
.client-role-aside p { font-size: 1.2rem; font-style: italic; }

.tools-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, auto); gap: 2rem; }
.tool-item { position: relative; border-radius: 8px; overflow: hidden; }
.tool-item.large { grid-column: 1 / 2; grid-row: 1 / 3; }
.tool-item img { width: 100%; height: 100%; object-fit: cover; }
.tool-caption { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0,0,0,0.6); color: white; padding: 1rem; }
.tool-caption h4 { color: white; margin: 0; }

.timelines-section { text-align: center; }
.timelines-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; text-align: left; }
.timelines-grid h3 { border-top: 2px solid var(--color-primary); padding-top: 1rem; }

.budget-section { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 4rem; align-items: center; }
.budget-image img { border-radius: 8px; }

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

@media (max-width: 768px) {
    .client-role-section, .budget-section { grid-template-columns: 1fr; }
    .tools-grid { grid-template-columns: 1fr; }
    .tool-item.large { grid-column: auto; grid-row: auto; aspect-ratio: 1/1; }
}

@media (max-width: 480px) {
    .process-timeline-section::before { left: 15px; }
    .timeline-item { padding-left: 50px; }
    .timeline-item::before { left: 0; }
}
.completion-section-wrapper {
    position: relative;
    padding: clamp(6rem, 12vw, 10rem) 0;
    background-image: url('images/67.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.completion-section-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.completion-section-wrapper .container {
    position: relative; 
    z-index: 2;
    display: flex;
    justify-content: flex-end; 
}

.completion-content-box {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: clamp(2rem, 5vw, 3rem);
    border-radius: 8px;
    max-width: 650px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.completion-content-box h2 {
    margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
    .completion-section-wrapper .container {
        justify-content: center; 
    }

    .completion-content-box {
        width: 100%;
    }
}












.legal-hero-section {
    margin-top: var(--header-height);
    padding: clamp(3rem, 8vw, 6rem) 0;
    background-color: var(--color-light-bg);
    border-bottom: 1px solid var(--color-border);
}

.legal-hero-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.legal-hero-section h1 {
    margin-bottom: 0.5rem;
}

.legal-hero-section p {
    color: #777;
    font-size: 0.9rem;
    margin: 0;
}

.legal-content-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
}

.legal-content-section .container {
    max-width: 800px;
}

.legal-content-section h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-border);
}

.legal-content-section article > h2:first-of-type {
    margin-top: 0;
}

.legal-content-section p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.legal-content-section ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-content-section li {
    margin-bottom: 0.8rem;
}
.thank-you-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: var(--color-light-bg);
    text-align: center;
}

.thank-you-container {
    width: 100%;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 4rem);
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.thank-you-content h1 {
    margin-bottom: 1.5rem;
}

.thank-you-content p {
    margin: 0 auto 2rem auto;
    color: var(--color-text);
}











.team-hero-section {
    margin-top: var(--header-height);
    position: relative;
    display: flex;
    align-items: center;
    min-height: 70vh;
    padding: clamp(4rem, 10vw, 8rem) 0;
    text-align: left;
    color: white;
}

.team-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.team-hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.team-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-hero-section .container {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.team-hero-section h1,
.team-hero-section p {
    text-shadow: 0px 1px 6px rgba(0, 0, 0, 0.7);
}

.team-hero-section h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    color: white;
}

.team-hero-section p {
    font-size: 1.1rem;
    color: #f0f0f0;
    max-width: 60ch;
}

.founder-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: flex-start;
}
.founder-image img {
    border-radius: 8px;
}
.founder-quote {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-primary);
    margin-bottom: 2rem;
    border-left: 3px solid var(--color-primary);
    padding-left: 2rem;
}
.founder-bio h2 {
    margin-bottom: 1.5rem;
}

.core-team-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}
.team-member-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}
.team-member-card.reverse {
    grid-template-columns: 2fr 1fr;
}
.team-member-card.reverse .team-member-image {
    order: 1;
}
.team-member-image img {
    border-radius: 4px;
    aspect-ratio: 1/1;
    object-fit: cover;
}
.team-member-info h3 {
    margin: 0;
}
.team-member-info span {
    display: block;
    margin-bottom: 1rem;
    color: #777;
    font-weight: 500;
}

.culture-section {
    max-width: 700px;
}
.culture-section h2 {
    margin-bottom: 1.5rem;
}

.studio-gallery-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}
.studio-image-large img, .studio-image-small img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partners-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.partners-section h2 {
    margin-bottom: 1.5rem;
}
.partners-section p::first-letter {
    font-size: 3rem;
    font-weight: 600;
    color: var(--color-primary);
    float: left;
    margin-right: 0.5rem;
    line-height: 0.8;
}

.careers-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}
.careers-image img {
    border-radius: 8px;
}

@media (max-width: 768px) {
    .founder-section, .team-member-card, .team-member-card.reverse, .careers-section {
        grid-template-columns: 1fr;
    }
    .team-member-card.reverse .team-member-image {
        order: 0;
    }
    .studio-gallery-grid {
        grid-template-columns: 1fr;
    }
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 3rem auto 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 8px;
}

.stat-number {
    display: block;
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.stat-item p {
    margin-top: 0.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    color: #777;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
.partners-section-wrapper {
    position: relative;
    padding: clamp(6rem, 12vw, 10rem) 0;
    background-image: url('images/75.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.partners-section-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.partners-section-wrapper .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-start; 
}

.partners-content-box {
    background-color: rgba(26, 26, 26, 0.8); 
    backdrop-filter: blur(10px);
    padding: clamp(2rem, 5vw, 3rem);
    border-radius: 8px;
    max-width: 650px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.partners-content-box h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.partners-content-box p {
    color: #ddd; 
}

@media (max-width: 768px) {
    .partners-section-wrapper .container {
        justify-content: center; 
    }

    .partners-content-box {
        width: 100%;
    }
}


.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    background-color: var(--color-light-bg);
    margin-top: 0; 
    padding-top: var(--header-height);
}

.page-hero-section {
    margin-top: 0;
    padding: clamp(4rem, 10vw, 8rem) 0;
    padding-top: calc(var(--header-height) + clamp(2rem, 5vw, 4rem)); 
}

.projects-hero-section {
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    min-height: 70vh;
    margin-top: 0; 
    padding-top: var(--header-height); 
}

.services-hero-section {
    margin-top: 0;
    padding: clamp(4rem, 10vw, 8rem) 0;
    padding-top: calc(var(--header-height) + clamp(2rem, 5vw, 4rem));
}

.process-hero-section {
    margin-top: 0; 
    padding: clamp(4rem, 10vw, 8rem) 0;
    padding-top: calc(var(--header-height) + clamp(2rem, 5vw, 4rem));
    text-align: left;
}

.team-hero-section {
    margin-top: 0; 
    position: relative;
    display: flex;
    align-items: center;
    min-height: 70vh;
    padding: clamp(4rem, 10vw, 8rem) 0;
    text-align: left;
    color: white;
    padding-top: calc(var(--header-height) + clamp(2rem, 5vw, 4rem));
}

.legal-hero-section {
    margin-top: 0; 
    padding: clamp(3rem, 8vw, 6rem) 0;
    padding-top: calc(var(--header-height) + clamp(1rem, 4vw, 3rem)); 
    background-color: var(--color-light-bg);
    border-bottom: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    align-items: center;
}