:root {
    --bg-dark: #050505;
    --bg-darker: #020202;
    --text-light: #f5f5f5;
    --text-dim: #999999;
    --accent: #ffffff;
    --font-main: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

/* Film Grain Overlay */
.film-grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: background-color 0.5s ease, padding 0.5s ease;
    color: #111;
    /* Default to dark text for light hero */
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 1.5rem 4rem;
    backdrop-filter: blur(10px);
    color: var(--text-light);
    /* Switch to light text */
}

.logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 35px;
    width: auto;
    object-fit: contain;
    transition: filter 0.5s ease;
}

.scrolled-logo {
    display: none;
}

.navbar.scrolled .default-logo {
    display: none;
}

.navbar.scrolled .scrolled-logo {
    display: block;
}

.nav-links a {
    color: inherit;
    text-decoration: none;
    margin-left: 2.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

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

.navbar.scrolled .nav-links a:hover {
    color: var(--text-dim);
}

/* Editorial Hero Section */
.hero-editorial {
    position: relative;
    height: 100vh;
    background-color: #f4f4f4;
    overflow: hidden;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-text {
    position: absolute;
    left: 0;
    width: 100vw;
    padding: 0 10px;
    box-sizing: border-box;
    text-align: center;
    font-size: 23vw;
    font-weight: 900;
    line-height: 0.77;
    color: #111;
    z-index: 1;
    bottom: 0;
    letter-spacing: -0.8vw;
    white-space: nowrap;
}

.hero-subject-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: multiply;
    /* Perfect blending over light bg */
}

.hero-subject {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 3;
    animation: slideInRight 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.hero-subject-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    animation: slideInRightBlur 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

/* Static blur positions relative to the moving subject */
.hero-subject-blur.b1 {
    filter: blur(6px) brightness(0.9);
    opacity: 0.5;
    margin-left: -30px;
    animation-delay: 0.05s;
}

.hero-subject-blur.b2 {
    filter: blur(15px) brightness(0.9);
    opacity: 0.25;
    margin-left: -60px;
    animation-delay: 0.1s;
}

.hero-subject-blur.b3 {
    filter: blur(30px) brightness(0.9);
    opacity: 0.1;
    margin-left: -100px;
    animation-delay: 0.15s;
}

@keyframes slideInRight {
    from {
        transform: translateX(80px) scale(1.05);
        opacity: 0;
    }

    to {
        transform: translateX(0) scale(1.05);
        opacity: 1;
    }
}

@keyframes slideInRightBlur {
    from {
        transform: translateX(120px) scale(1.05);
        opacity: 0;
    }

    to {
        transform: translateX(0) scale(1.05);
        opacity: 1;
    }
}

.micro-detail {
    position: absolute;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    z-index: 4;
    color: #444;
}

.micro-detail.top-right {
    top: 8rem;
    right: 4rem;
    text-align: right;
    line-height: 1.6;
}

.micro-detail.top-right .bold {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -2px;
    color: #111;
}

.micro-detail.middle-left {
    top: 50%;
    left: 4rem;
    transform: translateY(-50%);
    line-height: 1.8;
    color: #1a1a1a;
    text-align: left;
}

.micro-detail.bottom-center {
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: 3px;
}

.hero-main-info {
    position: absolute;
    bottom: 5rem;
    left: 4rem;
    z-index: 4;
    max-width: 400px;
}

.hero-main-info h1 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    color: #ffffff;
}

.hero-main-info h2 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #eaeaea;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.hero-main-info p {
    font-size: 0.85rem;
    color: #dcdcdc;
    line-height: 1.6;
}

.hero-glass-btn {
    position: absolute;
    bottom: 5rem;
    right: 15vw;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    z-index: 5;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), background 0.4s ease;
}

.hero-glass-btn:hover {
    transform: scale(1.1);
    background: rgba(10, 10, 10, 0.8);
    color: #fff;
}

/* Sections */
.section-padding {
    padding: 10rem 4rem;
}

.default-bg {
    background-color: var(--bg-dark);
}

.dark-bg {
    background-color: var(--bg-darker);
}

/* Editorial Showcase */
.editorial-showcase {
    position: relative;
    padding: 0;
    overflow: hidden;
    color: var(--text-light);
}

.marquee {
    width: 100vw;
    background-color: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    overflow: hidden;
    padding: 1.5rem 0;
    display: flex;
}

.marquee-track {
    display: inline-block;
    white-space: nowrap;
    animation: marqueeScroll 45s linear infinite;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.marquee-track.reverse {
    animation-direction: reverse;
}

.marquee-icon {
    height: 1.2em;
    width: auto;
    vertical-align: middle;
    margin: 0 0.8rem;
    display: inline-block;
    padding-bottom: 2px;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.editorial-grid {
    padding: 8rem 4rem;
}

.ed-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5rem;
}

.ed-small-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #999;
    line-height: 1.6;
    letter-spacing: 1px;
}

.ed-big-title {
    font-size: 5vw;
    font-weight: 900;
    text-align: right;
    line-height: 0.95;
    letter-spacing: -2px;
    max-width: 60vw;
}

.ed-body {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
}

.ed-col {
    display: flex;
    flex-direction: column;
}

.ed-col-1 {
    justify-content: space-between;
}

.ed-img-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.card-top {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #ccc;
}

.ed-img-card img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    margin-bottom: 0.8rem;
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.5s ease;
}

.ed-img-card img.large-img {
    aspect-ratio: 3/4;
}

.ed-img-card:hover img {
    filter: grayscale(0%) contrast(1);
}

.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.65rem;
    color: #888;
}

.card-label {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.card-barcode {
    font-family: monospace;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #ccc;
}

.ed-desc {
    font-size: 0.85rem;
    font-weight: 400;
    color: #aaa;
    line-height: 1.8;
    max-width: 350px;
    margin-bottom: 4rem;
    letter-spacing: 0.5px;
}

.look-closer-btn {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
    margin-top: 4rem;
    display: inline-block;
    transition: color 0.3s ease;
}

.look-closer-btn:hover {
    color: #888;
}

.ed-logo-block {
    margin-top: auto;
}

.ed-logo-block h3 {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 0.2rem;
}

.ed-logo-block p {
    font-size: 0.7rem;
    color: #666;
    letter-spacing: 2px;
}

.staggered-1 {
    margin-top: 3rem;
}

.staggered-2 {
    margin-top: 6rem;
}

/* Portfolio Grid */
.portfolio-grid {
    padding-top: 5rem;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 450px;
    gap: 1.5rem;
}

.grid-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background-color: #111;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0.8;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 3rem;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.grid-overlay h3 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -1px;
    transform: translateY(20px);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.grid-item:hover img {
    transform: scale(1.05);
    opacity: 1;
}

.grid-item:hover .grid-overlay {
    opacity: 1;
}

.grid-item:hover .grid-overlay h3 {
    transform: translateY(0);
}

.grid-item.large {
    grid-column: span 12;
    height: 700px;
}

.grid-item.small {
    grid-column: span 6;
}

/* About Section */
.about {
    min-height: auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: stretch;
    max-width: 1300px;
    margin: 0 auto;
}

.about-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-subtitle {
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.about-headline {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.about-subheadline {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.about-body {
    font-size: 1.05rem;
    color: #888;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 90%;
}

.about-action {
    margin-top: auto;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.5px;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 0.6rem 0.8rem 0.6rem 2rem;
    border-radius: 40px;
    transition: background-color 0.3s;
}

.about-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.about-btn .icon-arrow {
    background-color: var(--accent);
    color: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-weight: 900;
    font-size: 1.1rem;
}

.about-image-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.about-portrait {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.5s ease;
}

.about-image-wrapper:hover .about-portrait {
    filter: grayscale(0%) contrast(1);
}

/* Process Section */
.process-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 0 2rem;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 24px;
    right: -20px;
    width: 40px;
    height: 1px;
    background-color: #333;
}

.step-num {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.process-step h4 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0px;
}

/* Contact */
.contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    position: relative;
    padding: 6rem 4rem 3.5rem 4rem;
    margin-bottom: -20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    align-items: center;
    gap: 2rem;
}

.contact-col {
    display: flex;
    flex-direction: column;
}

.left-col {
    text-align: left;
    align-items: flex-start;
}

.right-col {
    text-align: right;
    align-items: flex-end;
}

.col-title {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
    letter-spacing: 1px;
    font-weight: 300;
}

.footer-links,
.footer-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-details li {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.footer-links a,
.footer-details a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-details a:hover {
    color: var(--accent);
}

.address {
    font-size: 1.1rem !important;
    line-height: 1.4;
    font-weight: 400 !important;
}

.contact-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-sec-icon {
    display: block;
    margin-bottom: 3rem;
    height: 140px;
    width: auto;
}

.contact-cta {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 4rem;
    max-width: 900px;
}

.look-closer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3rem;
    border-radius: 5px;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    margin-top: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    gap: 15px;
}

.look-closer-btn:hover {
    transform: translateY(-5px);
    background: rgba(40, 40, 40, 0.9);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.footer-details li {
    text-transform: uppercase;
}

.contact-btn {
    display: inline-block;
    padding: 1.5rem 4rem;
    border: 1px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
}

.contact-btn:hover {
    background-color: var(--accent);
    color: var(--bg-dark);
}


.footer {
    width: 100%;
    margin-top: 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-dim);
}

.social-media {
    margin-bottom: 3rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    border-color: var(--text-light);
    background-color: var(--text-light);
    color: var(--bg-dark);
}

.copyright {
    font-size: 0.8rem;
    letter-spacing: 1px;
    opacity: 0.5;
}

.final-footer {
    text-align: center;
    padding: 3rem 2rem;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    z-index: 10;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    font-weight: 200;
    transition: opacity 0.3s;
}

.modal-close:hover {
    opacity: 0.6;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    background: #000;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.project-trigger {
    cursor: pointer;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUpAnim 1.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    animation-delay: 0.5s;
}

@keyframes fadeUpAnim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1), transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

/* Scroll-Driven Image Sequence */
.scroll-sequence-section {
    position: relative;
    height: 500vh;
    /* fallback — JS adjusts dynamically */
    background-color: var(--bg-darker);
}

.scroll-sequence-sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#cfdesigner-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    will-change: transform;
}

.scroll-sequence-overlay {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
    transition: opacity 0.8s ease;
}

.scroll-sequence-overlay.hidden {
    opacity: 0;
}

.scroll-hint {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
    animation: scrollHintPulse 2s ease-in-out infinite;
}

@keyframes scrollHintPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(8px);
    }
}

/* Responsive Grid */
@media (max-width: 768px) {

    .hero-editorial {
        padding: 20px;
        box-sizing: border-box;
    }

    .micro-detail.top-right,
    .micro-detail.middle-left,
    .micro-detail.bottom-center,
    .hero-main-info p {
        display: none;
    }

    .hero-main-info {
        left: 20px;
        bottom: 20px;
    }

    .hero-glass-btn {
        right: 20px;
        bottom: 20px;
        width: 100px;
        height: 100px;
        font-size: 0.7rem;
    }

    .grid-item.small,
    .grid-item.large {
        grid-column: span 12;
        height: 400px;
    }

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

    .authorial-content .section-title {
        font-size: 3rem;
    }

    .contact-cta {
        font-size: 3rem;
    }

    .ed-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 3rem;
    }

    .ed-big-title {
        font-size: 15vw;
        max-width: 100%;
        text-align: left;
        margin-top: 1rem;
    }

    .ed-body {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ed-col {
        display: contents;
    }

    .ed-logo-block {
        order: 9;
        margin-top: 0;
    }

    .staggered-1,
    .staggered-2 {
        margin-top: 0;
    }

    .ed-desc {
        max-width: 100%;
        margin-bottom: 2rem;
        order: -1;
    }

    .look-closer-btn {
        margin-top: 2rem;
        order: 5;
    }

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

    .left-col,
    .right-col {
        text-align: center;
        align-items: center;
        order: 2;
    }

    .contact-content {
        order: 1;
        margin-bottom: 2rem;
    }

    .process-container {
        flex-direction: column;
        align-items: center;
        gap: 4rem;
    }

    .process-step:not(:last-child)::after {
        display: none;
    }

    .navbar {
        padding: 1rem 20px;
        justify-content: center;
    }

    .nav-links {
        display: none;
    }

    .section-padding {
        padding: 4rem 20px;
    }

    .editorial-grid {
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .contact.section-padding {
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .about.section-padding {
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        width: 100%;
    }

    .about-headline {
        font-size: 3.5rem;
    }

    .about-body {
        max-width: 100%;
    }

    .about-image-wrapper {
        aspect-ratio: 4/5;
        height: auto;
    }

    .about-text {
        font-size: 1.2rem;
    }

    .scroll-sequence-section {
        height: auto !important; /* Will be set by JS, but allow override */
    }

    .scroll-sequence-sticky {
        height: 200px !important;
        position: sticky;
        top: calc(50% - 100px); /* Center vertically in viewport while scrolling */
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    #cfdesigner-canvas {
        height: 100% !important;
        width: 100% !important;
        object-fit: contain;
    }
}