/* Font Faces */
@font-face {
    font-family: 'PP Editorial New';
    src: url('fonts/PPEditorialNew-Ultralight.woff2') format('woff2'),
         url('fonts/PPEditorialNew-Ultralight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Telegraf';
    src: url('fonts/PPTelegraf-Regular.woff2') format('woff2'),
         url('fonts/PPTelegraf-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

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

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'PP Telegraf', sans-serif;
}

html {
    scroll-behavior: smooth;
    background-color: #111111;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1.5rem 0;
    background: transparent;
}

#navbar.scrolled {
    backdrop-filter: blur(4px);
    padding: 0.75rem 0;
}

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

/* Logo */
.logo img {
    height: 28px;
    transition: all 0.3s ease;
}

#navbar.scrolled .logo img {
    height: 30px;
}

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

.nav-links a {
    color: #EFEAE8;
    text-decoration: none;
    font-family: 'PP Telegraf', sans-serif;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.7;
}

/* Right Section */
.nav-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

/* Time Display */
.time-display {
    color: #EFEAE8;
    font-family: 'PP Telegraf', sans-serif;
    font-size: 0.875rem;
}

/* Menu Dots */
.menu-dots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    padding: 0.5rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.menu-dots:hover {
    opacity: 0.7;
}

.dot {
    width: 2px;
    height: 2px;
    background: #EFEAE8;
    border-radius: 50%;
}

/* Mobile Menu Toggle (Hidden on Desktop) */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem 0;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.menu-text-mask {
    position: relative;
    height: 20px;
    overflow: hidden;
}

.menu-text-closed,
.menu-text-open {
    color: #EFEAE8;
    font-family: 'PP Telegraf', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
    padding: 0;
    line-height: 20px;
    transition: transform 0.4s ease;
}

.menu-text-closed {
    transform: translateY(0);
}

.menu-text-open {
    transform: translateY(20px);
}

.mobile-menu-toggle.active .menu-text-closed {
    transform: translateY(-20px);
}

.mobile-menu-toggle.active .menu-text-open {
    transform: translateY(0);
}

.menu-text-closed {
    transform: translateY(0);
}

.menu-text-open {
    transform: translateY(100%);
}

.mobile-menu-toggle.active .menu-text-closed {
    transform: translateY(-100%);
}

.mobile-menu-toggle.active .menu-text-open {
    transform: translateY(0);
}

/* Mobile Fullscreen Menu */
.mobile-fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #111111;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-fullscreen-menu.active {
    transform: translateY(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    padding: 1.5rem;
}

.mobile-menu-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 0.875rem 1.5rem;
    font-family: 'PP Telegraf', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: opacity 0.3s ease;
    color: #EFEAE8;
    text-transform: uppercase;
}

.mobile-menu-close:hover {
    opacity: 0.7;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 0;
}

.mobile-menu-item {
    color: #EFEAE8;
    text-decoration: none;
    font-family: 'PP Telegraf', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding: 1.25rem 0;
    border-bottom: none;
    transition: opacity 0.3s ease;
    display: block;
}

.mobile-menu-item:hover {
    opacity: 0.6;
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #111111;
    backdrop-filter: blur(0px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(10px);
    background: rgba(24, 24, 24, 0.8);
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: transparent;
    z-index: 999;
    transition: right 0.4s ease;
    display: flex;
    align-items: flex-start;
    padding-top: 6rem;
    justify-content: right;
    padding-right: 3.5rem;
    pointer-events: none;
}

.sidebar.active {
    right: 0;
    pointer-events: auto;
}

.sidebar-nav {
    display: none;
}

.sidebar-nav a {
    display: none;
}

/* Rotating Image */
.sidebar-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.rotating-image-link {
    display: block;
    width: 150px;
    height: 150px;
}

.rotating-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    animation: rotate 30s linear infinite;
    transition: transform 0.3s ease;
}

.rotating-image-link:hover .rotating-image {
    transform: scale(1.05);
    opacity: 0.8;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100dvh;
    overflow: hidden;
}

/* Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Mobile Black Background */
.hero-bg-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #111111;
    display: none;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.1);
}

/* Hero Content */
.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 0 3rem 3rem 3rem;
}

.hero-text {
    font-family: 'PP Editorial New', serif;
    font-weight: 200;
    color: #EFEAE8;
    font-size: 3.5rem;
    line-height: 1.4;
    max-width: 60%;
}

/* Our Work Section */
.our-work {
    background: #111111;
    padding: 8rem 0 10rem;
}

.work-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
}

/* Left Column - Sticky */
.work-left {
    position: relative;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.work-left.visible {
    opacity: 1;
}

.work-sticky-content {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 30vh;
    padding-bottom: 1.5rem;
    padding-left: 0.75rem;
}

.work-static-title h2 {
    font-family: 'PP Editorial New', serif;
    font-weight: 200;
    font-size: 2.375rem;
    line-height: 1.2;
    color: #EFEAE8;
    margin-bottom: 0;
    opacity: 1;
}

.work-dynamic-title {
    position: relative;
    overflow: hidden;
    height: 2.85rem;
    margin-bottom: auto;
}

.work-dynamic-title h3 {
    font-family: 'PP Editorial New', serif;
    font-weight: 200;
    font-size: 2.375rem;
    line-height: 1.2;
    color: #989898;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(100%);
    transition: transform 333ms cubic-bezier(0, 0, 0, 1), opacity 167ms linear;
    opacity: 0;
}

.work-dynamic-title h3.active {
    transform: translateY(0);
    opacity: 1;
    transition: transform 333ms cubic-bezier(0, 0, 0, 1), opacity 167ms linear 333ms;
}

.work-description {
    position: relative;
    grid-column: span 4;
    margin-bottom: 3rem;
}

.work-description p {
    font-family: 'PP Telegraf', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.25;
    color: #989898;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: opacity 167ms linear;
}

.work-description p.active {
    position: relative;
    opacity: 1;
    transition: opacity 167ms linear 333ms;
}

.work-footer {
    position: relative;
}

.work-footer-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: opacity 167ms linear;
}

.work-footer-item.active {
    position: relative;
    opacity: 1;
    transition: opacity 167ms linear 333ms;
}

.work-logo {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    background: #2a2828;
}

.work-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-meta {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    padding-top: 0.125rem;
    padding-bottom: 0.25rem;
}

.work-subtitle {
    font-family: 'PP Telegraf', sans-serif;
    font-size: 0.8125rem;
    line-height: 1.25;
    color: #EFEAE8;
}

.work-tags {
    font-family: 'PP Telegraf', monospace;
    font-size: 0.5625rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #EFEAE8;
    position: relative;
    top: 1px;
}

/* Right Column - Projects */
.work-right {
    display: flex;
    flex-direction: column;
}

.work-projects {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.work-project {
    position: relative;
    opacity: 0.2;
    transition: opacity 167ms linear;
}

.work-project.active {
    opacity: 1;
}

.work-project-link {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.work-video-wrapper {
    position: relative;
    aspect-ratio: 18 /11;
    overflow: hidden;
    border-radius: 4px;
    background: #2a2828;
}

.work-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-project-info-mobile {
    display: none;
    padding: 0.125rem 0 0.25rem;
}

.work-project-info-mobile h3 {
    font-family: 'PP Telegraf', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.25;
    color: #EFEAE8;
}

.work-project-info-mobile p {
    font-family: 'PP Telegraf', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.25;
    color: #EFEAE8;
}

.work-view-all {
    display: block;
}

.view-all-btn {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    aspect-ratio: 922 / 168;
    overflow: hidden;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    padding: 2.25rem;
    text-decoration: none;
    color: #8a8a8a;
    font-family: 'PP Telegraf', monospace;
    font-size: 0.6875rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0;
    position: relative;
    top: 1px;
    transition: color 167ms linear;
}

.view-all-btn:hover {
    color: #EFEAE8;
}

.view-all-btn span:first-child {
    transition: transform 333ms linear;
}

.view-all-btn:hover span:first-child {
    transform: translateX(-0.25rem);
}

.view-all-btn span:last-child {
    transition: transform 333ms linear;
}

.view-all-btn:hover span:last-child {
    transform: translateX(0.25rem);
}

.view-all-btn span:nth-child(2) {
    transform: translateY(1px);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .time-display {
        display: none;
    }

    .hero-video {
        display: none;
    }

    /* Hide desktop menu dots on mobile */
    .menu-dots {
        display: none;
    }

    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: block;
    }

    /* Hide desktop sidebar on mobile */
    .sidebar {
        display: none;
    }

    .sidebar-overlay {
        display: none;
    }

    .hero-bg-mobile {
        display: block;
    }

    .hero-content {
        padding: 0 1.5rem 3rem 1.5rem;
    }

    .hero-text {
        max-width: 100%;
        font-size: 2.5rem;
    }

    /* Our Work Mobile */
    .our-work {
        padding: 6rem 0 4rem;
    }

    .work-wrapper {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }

    .work-left {
        display: block;
        position: relative;
        opacity: 1;
    }

    .work-sticky-content {
        position: relative;
        height: auto;
        padding-top: 0;
        padding-bottom: 2rem;
        padding-left: 0;
    }

    .work-static-title {
        display: block;
        opacity: 1;
    }

    .work-static-title h2 {
        opacity: 1;
        font-size: 1.625rem;
        margin-bottom: 2rem;
    }

    .work-dynamic-title,
    .work-description,
    .work-footer {
        display: none;
    }

    .work-projects {
        gap: 1.5rem;
    }

    .work-project {
        opacity: 1 !important;
    }

    .work-video-wrapper {
        aspect-ratio: 18 / 11;
        border-radius: 4px;
    }

    .timeline-image {
        display: none;
    }

    .work-project-info-mobile {
        display: flex;
        flex-direction: column;
        padding-right: 1.25rem;
        position: relative;
    }

    .work-project-info-mobile::after {
        content: '';
        position: absolute;
        top: 0.3125rem;
        right: 0;
        width: 0.625rem;
        height: 0.625rem;
        background: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.3042 7.69434L7.38914 2.6094' stroke='%238a8a8a' stroke-linecap='square'/%3E%3Cpath d='M2.3042 2.14746H7.8514V7.69467' stroke='%238a8a8a' stroke-linecap='square'/%3E%3C/svg%3E") no-repeat center;
    }

    .work-view-all {
        display: none;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-text {
        font-size: 3.5rem;
        max-width: 70%;
    }
}

/* Large Desktop Styles */
@media (min-width: 1400px) {
    .hero-text {
        font-size: 3.5rem;
    }
}

/* Statement Section */
.statement-section {
    background-color: #111111;
    padding: 6rem 0;
    position: relative;
    z-index: 10;
}

.statement-container {
    max-width: 1600px; 
    margin: 0 auto;
    padding: 0 3rem; 
}

.statement-text {
    font-family: 'PP Editorial New', serif;
    font-weight: 200;
    color: #EFEAE8;
    font-size: 2rem;
    line-height: 1.4;
    max-width: 60%;
}

@media (max-width: 768px) {
  
    .statement-section {
        padding: 4rem 0;
    }

    .statement-container {
        padding: 0 1.5rem;
    }

    .statement-text {
        max-width: 100%;
        font-size: 1.5rem; /* Matches your mobile hero-text size */
    }
}
/* Our Process Section */
.our-process {
    background: #111111;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0;
    position: relative;
}

.process-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
    width: 100%;
}

/* Header */
.process-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.process-title {
    font-family: 'PP Telegraf', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #EFEAE8;
    text-transform: uppercase;
}

.process-link {
    font-family: 'PP Telegraf', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #EFEAE8;
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s ease;
}

.process-link:hover {
    opacity: 0.7;
}

.process-link svg {
    width: 14px;
    height: 14px;
}

/* Main Content Grid */
.process-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

/* Services List */
.process-services {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-item {
    font-family: 'PP Editorial New', serif;
    font-weight: 200;
    font-size: 2.375rem;
    line-height: 1.2;
    color: #EFEAE8;
}

/* Process Diagram */
.process-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
}

.diagram-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

/* Timeline Section */
.process-timeline {
    width: 100%;
    margin-top: 4rem;
}

.timeline-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .our-process {
        padding: 4rem 0;
        min-height: auto;
    }

    .process-container {
        padding: 0 1.5rem;
    }

    .process-header {
        margin-bottom: 3rem;
    }

    .process-title {
        font-size: 0.75rem;
    }

    .process-link {
        font-size: 0.75rem;
    }

    .process-link svg {
        width: 12px;
        height: 12px;
    }

    .process-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
    }

    .process-services {
        gap: 0.75rem;
    }

    .service-item {
        font-size: 1.75rem;
    }

    .process-timeline {
        margin-top: 3rem;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .process-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .service-item {
        font-size: 2.375rem;
    }
}

/* Large Desktop Styles */
@media (min-width: 1400px) {
    .service-item {
        font-size: 2.375rem;
    }

    .process-content {
        gap: 6rem;
    }
}
/* Footer Section */
.footer {
    min-height: 90dvh;
    display: flex;
    align-items: center;
    padding: 0rem 0;
    position: relative;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: end;
}

/* Left Column */
.footer-left {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    min-height: 60vh;
}

.footer-titles {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-main-title {
    font-family: 'PP Editorial New', serif;
    font-weight: 200;
    font-size: 2.375rem;
    line-height: 1.2;
    color: #EFEAE8;
}

.footer-sub-title {
    font-family: 'PP Editorial New', serif;
    font-weight: 200;
    font-size: 2.375rem;
    line-height: 1.2;
    color: #EFEAE8;
}

.footer-image-wrapper {
    margin-top: auto;
}

.footer-image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 398 / 265;
    border-radius: 8px;
    overflow: hidden;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-image {
    width: 60%;
    height: auto;
    object-fit: contain;
    opacity: 0.9;
}

.footer-image-text {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-image-text p {
    font-family: 'PP Telegraf', sans-serif;
    font-size: 0.6875rem;
    line-height: 1.2;
    color: #EFEAE8;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.footer-image-text p:last-child {
    opacity: 0.6;
}

/* Right Column */
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 0.5rem;
}

.footer-section {
    border-top: 1px solid #2a2a2a;
    padding: 2.5rem 0;
}

.footer-section:last-of-type {
    border-bottom: 1px solid #2a2a2a;
}

.footer-section-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.footer-section-title {
    font-family: 'PP Telegraf', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.4;
    color: #EFEAE8;
}

.footer-section-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section-info p {
    font-family: 'PP Telegraf', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.4;
    color: #EFEAE8;
}

.footer-section-info a {
    font-family: 'PP Telegraf', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.4;
    color: #808080;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section-info a:hover {
    color: #EFEAE8;
}

.footer-section-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section-links a {
    font-family: 'PP Telegraf', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.4;
    color: #808080;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section-links a:hover {
    color: #EFEAE8;
}

/* Footer Bottom */
.footer-bottom {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    padding: 2.5rem 0 0;
}

.footer-copyright p {
    font-family: 'PP Telegraf', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.4;
    color: #5a5a5a;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal p {
    font-family: 'PP Telegraf', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.4;
    color: #5a5a5a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #EFEAE8;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .footer {
        padding: 4rem 0;
        min-height: auto;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding: 0 1.5rem;
    }

    .footer-left {
        min-height: auto;
        gap: 3rem;
    }

    .footer-main-title {
        font-size: 2.375rem;
    }

    .footer-sub-title {
        font-size: 2.375rem;
    }

    .footer-image-container {
        max-width: 100%;
    }

    .footer-image-text {
        bottom: 1rem;
        left: 1rem;
    }

    .footer-image-text p {
        font-size: 0.625rem;
    }

    .footer-right {
        padding-top: 0;
    }

    .footer-section {
        padding: 2rem 0;
    }

    .footer-section-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-section-title {
        font-size: 0.875rem;
    }

    .footer-section-info p,
    .footer-section-info a,
    .footer-section-links a {
        font-size: 0.875rem;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0 0;
    }

    .footer-copyright p {
        font-size: 0.875rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-legal a {
        font-size: 0.875rem;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .footer-main-title,
    .footer-sub-title {
        font-size: 2.375rem;
    }

    .footer-section-content {
        gap: 2rem;
    }

    .footer-bottom {
        gap: 2rem;
    }
}

/* Large Desktop Styles */
@media (min-width: 1400px) {
    .footer-main-title,
    .footer-sub-title {
        font-size: 2.375rem;
    }

    .footer-container {
        gap: 8rem;
    }
}

/* Comparison Section */
.comparison-section {
    background: #111111;
    padding: 6rem 0;
}

.comparison-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.comparison-card {
    position: relative;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    background: #2a2828;
}

.comparison-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Operating Section */
.operating-section {
    background: #111111;
    padding: 6rem 0;
}

.operating-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
}

.operating-title {
    font-family: 'PP Editorial New', serif;
    font-weight: 200;
    font-size: 2.375rem;
    line-height: 1.3;
    color: #EFEAE8;
    margin-bottom: 4rem;
    max-width: 900px;
}

.operating-title em {
    font-style: italic;
    font-weight: 200;
}

.operating-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.operating-card {
    position: relative;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    background: #2a2828;
}

.operating-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .comparison-section {
        padding: 4rem 0;
    }

    .comparison-container {
        padding: 0 1.5rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .operating-section {
        padding: 4rem 0;
    }

    .operating-container {
        padding: 0 1.5rem;
    }

    .operating-title {
        font-size: 2.375rem;
        margin-bottom: 3rem;
    }

    .operating-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .comparison-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .operating-title {
        font-size: 2.375rem;
    }

    .operating-grid {
        gap: 1.25rem;
    }
}

/* Large Desktop Styles */
@media (min-width: 1400px) {
    .comparison-grid {
        gap: 2rem;
    }

    .operating-title {
        font-size: 2.375rem;
    }

    .operating-grid {
        gap: 2rem;
    }
}