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

:root {
    --bg: #fff;
    --text: #111;
    --muted: #555;
    --hero-left-pad: 6%;
    --hero-right-pad: 2%;
    --hero-gap: 0px;
    --image-right-offset: 150px;
    --icons-bottom: 154px;
    --body-copy-size: clamp(1rem, 1.08vw, 1.16rem);
}

body {
    background: linear-gradient(to right, #f7f7f7, #ffffff);
    font-family: "Poppins", sans-serif;
    color: var(--text);
    font-size: var(--body-copy-size);
    overflow-x: hidden;
}

p {
    text-align: justify;
}

html {
    scroll-behavior: smooth;
}

/* LAYOUT */
.hero-wrapper {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(420px, 1.05fr);
    align-items: center;
    column-gap: var(--hero-gap);
    padding: 0 var(--hero-right-pad) 0 var(--hero-left-pad);
    position: relative;
    overflow: hidden;
}

/* TEXT SIDE */
.text-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.text-side h1 {
    font-family: "Style Script", cursive;
    font-size: clamp(3.6rem, 7vw, 6.6rem);
    font-weight: 400;
    line-height: 1.08;
}

.text-side h2 {
    font-size: clamp(1.08rem, 1.35vw, 1.45rem);
    font-weight: 400;
    letter-spacing: 5.5px;
    margin-top: 10px;
}

.text-side p {
    font-size: 1em;
    color: var(--muted);
    max-width: 430px;
    line-height: 1.72;
    margin-top: 16px;
    text-align: center;
}

/* IMAGE SIDE */
.image-side {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    padding-right: var(--image-right-offset);
    position: relative;
}

.torn-edge-container {
    overflow: hidden;
    max-width: min(100%, 940px);
}

.torn-edge-container img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
}

/* TOP MENU */
.top-menu {
    position: fixed;
    top: 18px;
    right: var(--image-right-offset);
    display: flex;
    align-items: center;
    gap: 24px;
    z-index: 40;
    padding: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
}

.menu-link {
    color: var(--text);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.88rem;
    letter-spacing: 1.8px;
    position: relative;
    opacity: 0.84;
    transition: opacity 0.25s ease;
}

.menu-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 1px;
    background: var(--text);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.menu-link:hover {
    opacity: 1;
}

.menu-link:hover::after {
    transform: scaleX(1);
}

/* ULTRA-WIDE DESKTOP */
@media (min-width: 1800px) {
    :root {
        --hero-left-pad: 9%;
        --hero-right-pad: 6%;
        --hero-gap: 28px;
        --image-right-offset: 190px;
        --icons-bottom: 182px;
    }

    .torn-edge-container {
        max-width: min(100%, 1020px);
    }

    .text-side p {
        max-width: 460px;
    }
}

/* SOCIAL ICONS */
.social-container {
    position: absolute;
    bottom: var(--icons-bottom);
    right: var(--image-right-offset);
    display: flex;
    gap: 14px;
    z-index: 10;
}

.social-icon {
    text-decoration: none;
    color: var(--text);
    font-size: 1.9rem;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.social-icon:hover {
    opacity: 0.6;
    transform: translateY(-2px);
}

/* SCROLL DOWN CTA */
.scroll-down {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    width: 52px;
    height: 52px;
    border: 1.5px solid var(--text);
    border-radius: 50%;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    z-index: 3;
    transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease;
    animation: arrowFloat 1.8s ease-in-out infinite;
}

.scroll-down:hover {
    opacity: 0.8;
    background-color: rgba(17, 17, 17, 0.06);
    transform: translateX(-50%) translateY(-2px);
}

@keyframes arrowFloat {
    0% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(5px);
    }
    100% {
        transform: translateX(-50%) translateY(0);
    }
}

/* ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s ease, transform 1s cubic-bezier(0.17, 0.67, 0.2, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

.torn-edge-container.reveal {
    transform: translateX(34px);
}

.social-container.reveal {
    transform: translateY(16px);
}

.top-menu.reveal {
    transform: translateY(-14px);
}

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

.torn-edge-container.reveal.active {
    transform: translateX(0);
}

.scroll-down.reveal {
    transform: translateX(-50%) translateY(16px);
}

.scroll-down.reveal.active {
    transform: translateX(-50%) translateY(0);
}

/* ABOUT SECTION */
.about-section {
    min-height: 100vh;
    padding: 70px calc(var(--image-right-offset) + 12px) 92px clamp(24px, 7vw, 130px);
    background: #fff;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(260px, 450px) minmax(400px, 1fr);
    align-items: center;
    gap: clamp(36px, 5vw, 72px);
}

.about-image img {
    width: 100%;
    max-width: 450px;
    display: block;
}

.about-content {
    max-width: 850px;
    justify-self: end;
}

.about-content h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    margin-bottom: 26px;
    text-align: left;
}

.about-content p {
    max-width: 850px;
    color: var(--muted);
    font-size: 1em;
    line-height: 1.6;
    letter-spacing: 0.1px;
    text-align: justify;
}

.about-scroll {
    bottom: 28px;
}

.work-section {
    min-height: 100vh;
    padding: 90px clamp(24px, 7vw, 120px) 80px;
    background: #f7f7f7;
    display: grid;
    align-content: center;
    gap: 0;
    position: relative;
    overflow: hidden;
}

.now-then-media {
    width: min(100%, 1100px);
    margin: 0 auto;
    position: relative;
    aspect-ratio: 16 / 9;
    min-height: 320px;
    border-radius: 0;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
}

.now-then-title {
    position: absolute;
    top: 40px;
    left: 40px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    color: #000;
    text-align: left;
    z-index: 2;
}

.now-then-media video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    clip-path: inset(0 0 1px 0);
}

.work-scroll {
    bottom: 28px;
    z-index: 1;
}

.scroll-down.hidden-by-section {
    opacity: 0;
    pointer-events: none;
}

.expertise-section {
    min-height: 100vh;
    padding: 90px clamp(24px, 7vw, 120px) 80px;
    background: #fff;
    display: grid;
    grid-template-columns: minmax(320px, 500px) minmax(320px, 500px);
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: clamp(10px, 1.8vw, 24px);
    max-width: none;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.expertise-copy {
    width: 100%;
    max-width: 500px;
    justify-self: end;
}

.expertise-copy h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.4rem, 4.4vw, 3.8rem);
    font-weight: 400;
    margin-bottom: 18px;
}

.expertise-list {
    list-style: disc;
    display: grid;
    gap: 8px;
    max-width: 800px;
    color: var(--muted);
    padding-left: 38px;
}

.expertise-list li {
    font-size: 1em;
    line-height: 1.58;
}

.expertise-art {
    justify-self: center;
    transform: none;
}

.puzzle-circle {
    width: clamp(280px, 34vw, 500px);
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    background: transparent;
}

.puzzle-piece {
    position: absolute;
    overflow: hidden;
    transition: transform 0.25s ease;
}

.puzzle-piece img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.p1 {
    top: 0;
    left: 0;
    width: calc(50% - 6px);
    height: calc(50% - 6px);
}

.p2 {
    top: 0;
    right: 0;
    width: calc(50% - 6px);
    height: calc(50% - 6px);
}

.p3 {
    bottom: 0;
    left: 0;
    width: calc(50% - 6px);
    height: calc(50% - 6px);
}

.p4 {
    bottom: 0;
    right: 0;
    width: calc(50% - 6px);
    height: calc(50% - 6px);
}

.puzzle-full {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.puzzle-piece:hover {
    transform: scale(1.02);
}

.p1:hover ~ .full1,
.p2:hover ~ .full2,
.p3:hover ~ .full3,
.p4:hover ~ .full4 {
    opacity: 1;
}

.expertise-scroll {
    bottom: 28px;
}

.brand-identity-section {
    min-height: 100vh;
    padding: 90px clamp(24px, 7vw, 120px) 80px;
    background: linear-gradient(to right, #f7f7f7, #ffffff);
    display: grid;
    grid-template-columns: minmax(420px, 580px) minmax(260px, 1fr);
    grid-template-areas:
        "slider title"
        "slider copy";
    align-items: center;
    align-content: center;
    gap: 18px 42px;
    position: relative;
    overflow: hidden;
}

.brand-identity-title {
    grid-area: title;
    align-self: end;
}

.brand-identity-title h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 6vw, 5.2rem);
    font-weight: 400;
    line-height: 0.92;
}

.brand-identity-slider {
    grid-area: slider;
    width: min(100%, 520px);
    justify-self: start;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 252, 246, 0.96);
    box-shadow:
        0 18px 40px rgba(47, 35, 21, 0.12),
        0 0 0 1px rgba(93, 73, 49, 0.08);
    aspect-ratio: 4 / 3;
}

.brand-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    border: none;
    background: #fff;
    transform: scale(1.06) translateX(3%);
    filter: blur(8px) saturate(0.82);
    transition: opacity 0.9s ease, transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), filter 1.2s ease;
}

.brand-slide.active {
    opacity: 1;
    transform: scale(1) translateX(0);
    filter: blur(0) saturate(1);
}

.brand-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    background: rgba(26, 24, 21, 0.22);
    color: rgba(255, 255, 255, 0.92);
    display: grid;
    place-items: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    z-index: 3;
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.brand-prev {
    left: 14px;
}

.brand-next {
    right: 14px;
}

.brand-nav:hover {
    transform: translateY(-50%) scale(1.05);
    background: rgba(26, 24, 21, 0.32);
    border-color: rgba(255, 255, 255, 0.78);
}

.brand-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    justify-content: center;
    z-index: 3;
}

.brand-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.44);
    padding: 0;
    cursor: pointer;
    transition: width 0.25s ease, background-color 0.25s ease;
}

.brand-dot.active {
    width: 24px;
    background: #fff;
}

.brand-progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.34);
    overflow: hidden;
    z-index: 3;
}

.brand-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: #fff;
    transform-origin: left;
    animation: brandProgress 3.2s linear infinite;
}

@keyframes brandProgress {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.brand-identity-copy {
    grid-area: copy;
    max-width: 760px;
    align-self: start;
}

.brand-identity-copy p {
    font-size: 1em;
    line-height: 1.6;
    color: var(--muted);
    text-align: justify;
}

.brand-scroll {
    bottom: 28px;
}

.web-design-section {
    min-height: 100vh;
    padding: 90px clamp(24px, 7vw, 120px) 80px;
    background: #fff;
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 380px) minmax(420px, 620px);
    grid-template-areas:
        "title slider"
        "copy slider";
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 18px clamp(16px, 2vw, 26px);
}

.web-design-title {
    grid-area: title;
    width: 100%;
    max-width: 380px;
    justify-self: end;
}

.web-design-title h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 6vw, 5.2rem);
    font-weight: 400;
    line-height: 0.92;
}

.web-design-laptop {
    grid-area: slider;
    width: 100%;
    max-width: 620px;
    justify-self: start;
    --laptop-screen-top: 6.9%;
    --laptop-screen-left: 12.2%;
    --laptop-screen-right: 11.45%;
    --laptop-screen-bottom: 14.1%;
}

.laptop-mockup {
    position: relative;
    width: 100%;
}

.laptop-frame {
    display: block;
    width: 100%;
    height: auto;
}

.laptop-screen {
    position: absolute;
    top: var(--laptop-screen-top);
    left: var(--laptop-screen-left);
    right: var(--laptop-screen-right);
    bottom: var(--laptop-screen-bottom);
    overflow: hidden;
    border-radius: 6px;
    background: #ffffff;
}

.laptop-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.laptop-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.web-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 26px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
}

.web-lightbox.open {
    opacity: 1;
    pointer-events: auto;
}

.web-lightbox img {
    max-width: min(96vw, 1280px);
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.42);
    background: #fff;
}

.web-lightbox-close {
    position: absolute;
    top: 16px;
    right: 22px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 999px;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.92);
    color: #151515;
}



.web-design-copy {
    grid-area: copy;
    width: 100%;
    max-width: 380px;
    justify-self: end;
}

.web-design-copy p {
    font-size: 1em;
    line-height: 1.6;
    color: var(--muted);
    text-align: justify;
}

.web-scroll {
    bottom: 28px;
}

.uiux-section {
    min-height: 100vh;
    padding: 90px clamp(24px, 7vw, 120px) 80px;
    background: linear-gradient(to right, #f7f7f7, #ffffff);
    display: grid;
    grid-template-columns: minmax(320px, 700px) minmax(320px, 1fr);
    grid-template-areas:
        "media title"
        "media copy";
    gap: clamp(18px, 4vw, 52px);
    align-items: center;
    align-content: center;
    position: relative;
}

.uiux-title {
    grid-area: title;
    max-width: 760px;
    justify-self: start;
}

.uiux-media {
    grid-area: media;
    justify-self: center;
    width: min(100%, 700px);
}

.uiux-media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.uiux-content {
    grid-area: copy;
    max-width: 760px;
    justify-self: start;
}

.uiux-title h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 6vw, 5.2rem);
    font-weight: 400;
    line-height: 0.92;
    margin-bottom: 24px;
    text-align: left;
}

.uiux-content p {
    font-size: 1em;
    line-height: 1.62;
    color: var(--muted);
    text-align: left;
    max-width: 760px;
    margin: 0;
}

.uiux-scroll {
    bottom: -2px;
}

.logo-design-section {
    min-height: 100vh;
    padding: 90px clamp(24px, 7vw, 120px) 80px;
    background: #fff;
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(280px, 420px);
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: clamp(24px, 4vw, 48px);
    position: relative;
}

.logo-design-content {
    max-width: 520px;
    justify-self: start;
}

.logo-design-content h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    margin-bottom: 24px;
    text-align: left;
}

.logo-design-content p {
    font-size: 1em;
    line-height: 1.62;
    color: var(--muted);
    text-align: justify;
}

.logo-design-media {
    justify-self: start;
    max-width: min(100%, 720px);
    display: grid;
    align-items: center;
}

.logo-design-media img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: calc(100vh - 220px);
    object-fit: contain;
}

.logo-scroll {
    bottom: 28px;
}

.mobile-app-section {
    min-height: 100vh;
    padding: 90px clamp(24px, 7vw, 120px) 80px;
    background: #fff;
    display: grid;
    grid-template-columns: minmax(320px, 700px) minmax(320px, 1fr);
    gap: clamp(18px, 4vw, 52px);
    align-items: center;
    align-content: center;
    position: relative;
    overflow: hidden;
}

.mobile-app-media {
    justify-self: start;
    width: auto;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    background: #fff;
    line-height: 0;
    contain: paint;
    isolation: isolate;
}

.mobile-app-media::before,
.mobile-app-media::after {
    content: "";
    position: absolute;
    background: #fff;
    pointer-events: none;
    z-index: 2;
}

.mobile-app-media::before {
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
}

.mobile-app-media::after {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
}

.mobile-app-media video {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    border-radius: 0;
    background: #fff;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.mobile-app-media video:focus,
.mobile-app-media video:focus-visible,
.mobile-app-media video:active {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
}

.mobile-app-content {
    max-width: 760px;
    justify-self: start;
    display: grid;
    gap: 14px;
}

.mobile-app-content h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    margin-bottom: 10px;
    text-align: left;
    line-height: 0.96;
}

.mobile-app-content p {
    font-size: 1em;
    line-height: 1.68;
    color: var(--muted);
    text-align: left;
}

.mobile-app-content p + p {
    margin-top: 4px;
}

.mobile-project-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    align-self: start;
    margin-top: 10px;
    padding: 8px 14px;
    border: 1.5px solid var(--text);
    border-radius: 999px;
    color: #fff;
    background: var(--text);
    font-size: 0.84rem;
    font-weight: 500;
    letter-spacing: 0.1px;
    text-decoration: none;
    text-transform: lowercase;
    transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.mobile-project-link:hover {
    opacity: 1;
    color: var(--text);
    background: #fff;
    transform: translateY(-1px);
}

.mobile-app-scroll {
    bottom: 56px;
}

.zero-click-section {
    min-height: 100vh;
    padding: 90px clamp(24px, 7vw, 120px) 80px;
    background: #f7f7f7;
    display: grid;
    grid-template-columns: minmax(320px, 640px) minmax(320px, 1fr);
    grid-template-areas:
        "slider title"
        "slider copy";
    gap: clamp(24px, 4vw, 56px);
    align-items: center;
    align-content: center;
    position: relative;
}

.zero-click-title {
    grid-area: title;
    max-width: 980px;
    justify-self: start;
}

.zero-click-title h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    margin-bottom: 10px;
    text-align: left;
    line-height: 0.96;
}

.zero-click-slider {
    grid-area: slider;
    position: relative;
    width: min(100%, 640px);
    justify-self: center;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.16);
    background: #fff;
}

.zero-slide-track {
    position: relative;
    aspect-ratio: 16 / 10;
}

.zero-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.65s ease, transform 0.85s ease;
}

.zero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.zero-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #fff;
}

.zero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
    display: grid;
    place-items: center;
    cursor: pointer;
    backdrop-filter: blur(3px);
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
    z-index: 3;
}

.zero-prev {
    left: 14px;
}

.zero-next {
    right: 14px;
}

.zero-nav:hover {
    transform: translateY(-50%) scale(1.05);
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.45);
}

.zero-dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 3;
}

.zero-dot {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    padding: 0;
    cursor: pointer;
    transition: width 0.25s ease, background-color 0.25s ease;
}

.zero-dot.active {
    width: 24px;
    background: #fff;
}

.zero-progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.35);
    z-index: 3;
    overflow: hidden;
}

.zero-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: #fff;
    transform-origin: left;
    animation: zeroProgress 4.5s linear infinite;
}

@keyframes zeroProgress {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.zero-click-content {
    grid-area: copy;
    max-width: 980px;
    justify-self: start;
    display: grid;
    gap: 14px;
}

.zero-click-content p {
    font-size: 1em;
    line-height: 1.68;
    color: var(--muted);
    text-align: left;
}

.zero-project-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    align-self: start;
    margin-top: 10px;
    padding: 8px 14px;
    border: 1.5px solid var(--text);
    border-radius: 999px;
    color: #fff;
    background: var(--text);
    font-size: 0.84rem;
    font-weight: 500;
    letter-spacing: 0.1px;
    text-decoration: none;
    text-transform: lowercase;
    transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.zero-project-link:hover {
    opacity: 1;
    color: var(--text);
    background: #fff;
    transform: translateY(-1px);
}

.zero-click-scroll {
    bottom: 28px;
}

.cv-engine-section {
    min-height: 100vh;
    padding: 90px clamp(24px, 7vw, 120px) 80px;
    background: #fff;
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(320px, 680px);
    grid-template-areas:
        "title media"
        "copy media";
    gap: clamp(24px, 4vw, 56px);
    align-items: center;
    align-content: center;
    position: relative;
}

.cv-engine-title {
    grid-area: title;
    max-width: 760px;
    justify-self: start;
}

.cv-engine-title h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    margin-bottom: 10px;
    text-align: left;
    line-height: 0.96;
}

.cv-engine-content {
    grid-area: copy;
    max-width: 760px;
    justify-self: start;
    display: grid;
    gap: 14px;
}

.cv-engine-content p {
    font-size: 1em;
    line-height: 1.68;
    color: var(--muted);
    text-align: left;
}

.cv-engine-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    align-self: start;
    margin-top: 10px;
    padding: 8px 14px;
    border: 1.5px solid var(--text);
    border-radius: 999px;
    color: #fff;
    background: var(--text);
    font-size: 0.84rem;
    font-weight: 500;
    letter-spacing: 0.1px;
    text-decoration: none;
    text-transform: lowercase;
    transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.cv-engine-link:hover {
    opacity: 1;
    color: var(--text);
    background: #fff;
    transform: translateY(-1px);
}

.cv-engine-media {
    grid-area: media;
    justify-self: end;
    width: min(100%, 680px);
    padding: 4px;
    border: 1px solid #d9d9d9;
    overflow: hidden;
    position: relative;
    background: #fff;
    line-height: 0;
    contain: paint;
    isolation: isolate;
}

.cv-engine-media::before,
.cv-engine-media::after {
    content: "";
    position: absolute;
    background: #fff;
    pointer-events: none;
    z-index: 2;
}

.cv-engine-media::before {
    top: 4px;
    right: 4px;
    width: 3px;
    height: calc(100% - 8px);
}

.cv-engine-media::after {
    left: 4px;
    bottom: 4px;
    width: calc(100% - 8px);
    height: 3px;
}

.cv-engine-media video {
    width: 100%;
    height: auto;
    display: block;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    border-radius: 0;
    background: #fff;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.cv-engine-scroll {
    bottom: 36px;
}

.print-media-section {
    min-height: 100vh;
    padding: 90px clamp(24px, 7vw, 120px) 80px;
    background: #f7f7f7;
    display: grid;
    grid-template-columns: minmax(320px, 700px) minmax(320px, 1fr);
    grid-template-areas: "wall title" "wall copy";
    gap: clamp(28px, 4vw, 60px);
    align-items: center;
    align-content: center;
    position: relative;
}

.print-wall {
    grid-area: wall;
    position: relative;
    width: min(100%, 760px);
    justify-self: center;
}

.print-slider {
    position: relative;
    width: min(100%, 560px);
    aspect-ratio: 4 / 3;
    margin: auto;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 252, 246, 0.96);
    box-shadow:
        0 18px 40px rgba(47, 35, 21, 0.18),
        0 0 0 1px rgba(93, 73, 49, 0.08);
}

.print-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.06) translateX(3%);
    filter: blur(8px) saturate(0.82);
    transition: opacity 0.9s ease, transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), filter 1.2s ease;
}

.print-slide.active {
    opacity: 1;
    transform: scale(1) translateX(0);
    filter: blur(0) saturate(1);
}

.print-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: transparent;
}

.print-art-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    padding: 24px;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(241, 234, 220, 0.95)),
        linear-gradient(135deg, #f7f2e8 0%, #e4d7c4 100%);
}

.print-art-placeholder span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 76%);
    min-height: 78%;
    border: 1px dashed rgba(91, 71, 45, 0.35);
    background: rgba(255, 255, 255, 0.78);
    color: rgba(68, 51, 29, 0.78);
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.print-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    background: rgba(26, 24, 21, 0.22);
    color: rgba(255, 255, 255, 0.92);
    display: grid;
    place-items: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    z-index: 3;
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.print-prev {
    left: 14px;
}

.print-next {
    right: 14px;
}

.print-nav:hover {
    transform: translateY(-50%) scale(1.05);
    background: rgba(26, 24, 21, 0.32);
    border-color: rgba(255, 255, 255, 0.78);
}

.print-dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.print-dot {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.44);
    padding: 0;
    cursor: pointer;
    transition: width 0.25s ease, background-color 0.25s ease;
}

.print-dot.active {
    width: 24px;
    background: #fff;
}

.print-progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.34);
    overflow: hidden;
    z-index: 3;
}

.print-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: #fff;
    transform-origin: left;
    animation: printProgress 5s linear infinite;
}

@keyframes printProgress {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.print-media-title {
    grid-area: title;
    max-width: 940px;
    justify-self: start;
}

.print-media-title h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    margin-bottom: 24px;
    text-align: left;
    line-height: 0.96;
}

.print-media-content {
    grid-area: copy;
    max-width: 940px;
    justify-self: start;
}

.print-media-content p {
    font-size: 1em;
    line-height: 1.68;
    color: var(--muted);
    text-align: left;
}

.print-media-scroll {
    bottom: 28px;
}

.user-stories-section {
    min-height: 100vh;
    padding: 90px clamp(24px, 7vw, 120px) var(--image-right-offset);
    background: #fff;
    display: grid;
    grid-template-columns: minmax(320px, 620px) minmax(320px, 1fr);
    gap: clamp(24px, 4vw, 56px);
    align-items: center;
    align-content: center;
    position: relative;
}

.user-stories-media {
    width: min(100%, 620px);
    justify-self: end;
    margin: 0;
}

.user-stories-media img {
    display: block;
    width: 100%;
    height: auto;
}

.user-stories-media figcaption {
    margin-top: 8px;
    font-size: 0.66rem;
    line-height: 1.3;
    color: rgba(17, 17, 17, 0.55);
    text-align: right;
    letter-spacing: 0.02em;
    font-style: italic;
    width: fit-content;
    margin-left: auto;
}

.user-stories-content {
    max-width: 760px;
    justify-self: start;
}

.user-stories-content h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    margin-bottom: 24px;
    text-align: left;
    line-height: 0.96;
}

.user-stories-content p {
    font-size: 1em;
    line-height: 1.68;
    color: var(--muted);
    text-align: left;
}

.user-stories-scroll {
    bottom: 28px;
}

.contact-section {
    min-height: 100vh;
    padding: 90px clamp(24px, 7vw, 120px) 80px;
    background: #fff;
    display: grid;
    grid-template-rows: 1fr auto;
    align-content: stretch;
}

.contact-content {
    max-width: 860px;
    justify-self: center;
    display: grid;
    gap: 18px;
    align-self: center;
}

.contact-content h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    margin-bottom: 0;
    text-align: center;
}

.contact-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.site-footer {
    padding: 18px clamp(14px, 4vw, 28px) 22px;
    background: #fff;
    border-top: none;
}

.contact-section .site-footer {
    align-self: end;
}

.site-footer p {
    margin: 0;
    font-size: 0.74rem;
    color: #555;
    text-align: center;
    letter-spacing: 0.02em;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* LARGE LAPTOP */
@media (max-width: 1400px) {
    :root {
        --hero-left-pad: 6%;
        --hero-right-pad: 2.5%;
        --hero-gap: 12px;
        --image-right-offset: 120px;
        --icons-bottom: 136px;
    }

    .torn-edge-container {
        max-width: min(100%, 840px);
    }

    .top-menu {
        top: 14px;
        gap: 24px;
    }
}

/* LAPTOP */
@media (max-width: 1200px) {
    :root {
        --hero-left-pad: 5%;
        --hero-right-pad: 2.5%;
        --hero-gap: 20px;
        --image-right-offset: 72px;
        --icons-bottom: 96px;
    }

    .hero-wrapper {
        grid-template-columns: 0.95fr 1.05fr;
    }

    .text-side h1 {
        font-size: clamp(3.2rem, 6.4vw, 5.2rem);
    }

    .text-side h2 {
        letter-spacing: 4.5px;
    }
}

/* TABLET LANDSCAPE */
@media (max-width: 1024px) {
    :root {
        --hero-gap: 20px;
        --image-right-offset: 36px;
        --icons-bottom: 74px;
    }

    .hero-wrapper {
        grid-template-columns: 1fr 1fr;
        min-height: 100svh;
    }

    .image-side {
        min-height: 100svh;
    }

    .text-side p {
        max-width: 390px;
        line-height: 1.65;
    }

    .social-icon {
        font-size: 1.75rem;
    }

    .top-menu {
        top: 12px;
        gap: 18px;
    }

    .menu-link {
        font-size: 0.8rem;
        letter-spacing: 1.4px;
    }

    .scroll-down {
        width: 46px;
        height: 46px;
        font-size: 1rem;
    }
}

/* TABLET PORTRAIT + LARGE PHONES */
@media (max-width: 900px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        min-height: 100svh;
        padding: 32px max(16px, env(safe-area-inset-right)) 28px max(16px, env(safe-area-inset-left));
        row-gap: 10px;
        overflow: visible;
    }

    .image-side {
        order: 1;
        min-height: auto;
        width: 100%;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding-right: 0;
        margin-top: 2px;
        overflow: visible;
    }

    .top-menu {
        right: max(16px, env(safe-area-inset-right));
        left: auto;
        top: 12px;
        gap: 14px;
        padding: 0;
        flex-wrap: wrap;
        justify-content: flex-end;
        max-width: calc(100vw - 24px);
    }

    .torn-edge-container {
        width: min(100%, 680px);
        max-width: 100%;
        transform: none;
    }

    .torn-edge-container.reveal,
    .torn-edge-container.reveal.active {
        transform: none;
    }

    .torn-edge-container img {
        width: 100%;
        height: auto;
    }

    .social-container {
        position: static;
        justify-content: flex-end;
        width: min(100%, 680px);
        padding: 10px 2px 0;
    }

    .scroll-down {
        bottom: 14px;
    }

    .text-side {
        order: 2;
        padding: 22px 0 14px;
        gap: 6px;
    }

    .text-side h1 {
        font-size: clamp(2.9rem, 11.5vw, 4.25rem);
    }

    .text-side h2 {
        font-size: clamp(1.03rem, 3.6vw, 1.18rem);
        letter-spacing: 3px;
    }

    .text-side p {
        font-size: 1em;
        line-height: 1.58;
        max-width: min(94%, 520px);
        margin-top: 10px;
    }

    .about-section {
        min-height: auto;
        grid-template-columns: 1fr;
        padding: 28px clamp(14px, 4vw, 24px) 80px;
        gap: 22px;
    }

    .about-image {
        justify-self: center;
        width: min(100%, 520px);
    }

    .about-content h3 {
        text-align: left;
        margin-bottom: 14px;
        font-size: clamp(2.2rem, 11vw, 3.4rem);
    }

    .about-content {
        justify-self: stretch;
    }

    .about-content p {
        font-size: 1em;
        line-height: 1.58;
        max-width: 100%;
        text-align: justify;
    }

    .about-scroll {
        bottom: 20px;
    }

    .work-section {
        min-height: auto;
        padding: 72px clamp(14px, 4vw, 24px) 52px;
        gap: 0;
    }

    .now-then-media {
        aspect-ratio: auto;
        min-height: auto;
        display: grid;
        gap: 12px;
        overflow: visible;
        background: #f7f7f7;
    }

    .now-then-media::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -1px;
        width: 100%;
        height: 3px;
        background: #f7f7f7;
        pointer-events: none;
    }

    .now-then-title {
        position: static;
        margin: 0;
        font-size: clamp(2rem, 9vw, 3rem);
        line-height: 0.94;
    }

    .now-then-media video {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        object-fit: cover;
        border: 0 !important;
        outline: 0 !important;
        box-shadow: none !important;
        background: #f7f7f7;
        transform: translateZ(0);
        backface-visibility: hidden;
        clip-path: inset(1px);
        display: block;
    }

    .work-scroll {
        bottom: -12px;
    }

    .expertise-section {
        min-height: auto;
        padding: 70px clamp(14px, 4vw, 24px) 72px;
        grid-template-columns: 1fr;
        gap: 20px;
        align-content: start;
    }

    .expertise-scroll {
        bottom: 18px;
    }

    .expertise-copy h3 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .expertise-art {
        justify-self: center;
        transform: none;
        margin-bottom: 28px;
    }

    .puzzle-circle {
        width: min(84vw, 470px);
    }

    .expertise-list {
        padding-left: 30px;
    }

    .brand-identity-section {
        min-height: auto;
        padding: 70px clamp(14px, 4vw, 24px) 72px;
        grid-template-columns: 1fr;
        grid-template-areas:
            "title"
            "slider"
            "copy";
        gap: 18px;
        align-content: start;
    }

    .brand-identity-title h3 {
        font-size: clamp(2.4rem, 11vw, 4rem);
        line-height: 0.96;
    }

    .brand-identity-slider {
        width: 100%;
        justify-self: stretch;
        aspect-ratio: 4 / 3;
        margin-bottom: 28px;
    }

    .brand-nav {
        width: 40px;
        height: 40px;
    }

    .brand-scroll {
        bottom: 18px;
    }

    .web-design-section {
        min-height: auto;
        padding: 70px clamp(14px, 4vw, 24px) 72px;
        grid-template-columns: 1fr;
        grid-template-areas:
            "title"
            "slider"
            "copy";
        gap: 18px;
        align-content: start;
    }

    .web-design-laptop {
        width: min(100%, 680px);
        justify-self: center;
        margin-bottom: 28px;
    }

    .web-design-title,
    .web-design-copy {
        width: min(100%, 680px);
        max-width: 680px;
        justify-self: center;
    }

    .web-design-title h3 {
        font-size: clamp(2.4rem, 11vw, 4rem);
        line-height: 0.96;
        text-align: center;
    }

    .web-design-gallery {
        width: 100%;
        height: auto;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: none;
        grid-auto-rows: 68px;
        gap: 8px;
    }

    .web-lightbox {
        padding: 16px;
    }

    .web-lightbox-close {
        top: 10px;
        right: 12px;
    }

    .web-scroll {
        bottom: 18px;
    }

    .web-design-copy p {
        margin: 0 auto;
    }

    .uiux-section {
        min-height: auto;
        padding: 70px clamp(14px, 4vw, 24px) 50px;
        grid-template-columns: 1fr;
        grid-template-areas:
            "title"
            "media"
            "copy";
        align-content: start;
    }

    .uiux-title {
        justify-self: center;
        width: min(100%, 560px);
    }

    .uiux-media {
        width: min(100%, 560px);
        justify-self: center;
    }

    .uiux-title h3 {
        font-size: clamp(2.4rem, 11vw, 4rem);
        line-height: 0.96;
        text-align: center;
        margin-bottom: 0;
    }

    .uiux-content {
        justify-self: center;
        width: min(100%, 560px);
    }

    .uiux-content p {
        text-align: justify;
        margin: 0 auto;
    }

    .uiux-scroll {
        bottom: -4px;
    }

    .logo-design-section {
        min-height: auto;
        padding: 70px clamp(14px, 4vw, 24px) 72px;
        grid-template-columns: 1fr;
        align-content: start;
        gap: 28px;
    }

    .logo-design-content {
        max-width: none;
    }

    .logo-design-content h3 {
        font-size: clamp(2.4rem, 11vw, 4rem);
        line-height: 0.96;
    }

    .logo-design-media {
        justify-self: stretch;
        max-width: 100%;
        margin-bottom: 28px;
    }

    .logo-design-media img {
        width: auto;
        max-height: none;
    }

    .logo-scroll {
        bottom: 18px;
    }

    .mobile-app-section {
        min-height: auto;
        padding: 70px clamp(14px, 4vw, 24px) 72px;
        grid-template-columns: 1fr;
        align-content: start;
    }

    .mobile-app-media {
        width: auto;
        max-width: 100%;
        justify-self: center;
        margin-bottom: 28px;
    }

    .mobile-app-content {
        justify-self: center;
        max-width: 720px;
        gap: 12px;
        padding-bottom: 22px;
    }

    .mobile-app-content h3 {
        font-size: clamp(2.4rem, 11vw, 4rem);
        line-height: 0.96;
        text-align: center;
    }

    .mobile-app-content p {
        text-align: justify;
    }

    .mobile-project-link {
        display: inline-flex;
        width: auto;
        margin: 14px auto 0;
        padding: 8px 14px;
    }

    .mobile-app-scroll {
        bottom: 18px;
    }

    .zero-click-section {
        min-height: auto;
        padding: 70px clamp(14px, 4vw, 24px) 72px;
        grid-template-columns: 1fr;
        grid-template-areas:
            "title"
            "slider"
            "copy";
        align-content: start;
    }

    .zero-click-title {
        width: min(100%, 620px);
        justify-self: center;
    }

    .zero-click-slider {
        width: min(100%, 620px);
        justify-self: center;
        margin-bottom: 28px;
    }

    .zero-nav {
        width: 40px;
        height: 40px;
    }

    .zero-click-title h3 {
        font-size: clamp(2.4rem, 11vw, 4rem);
        line-height: 0.96;
        text-align: center;
    }

    .zero-click-content {
        width: min(100%, 620px);
        justify-self: center;
    }

    .zero-click-content p {
        text-align: justify;
    }

    .zero-project-link {
        display: inline-flex;
        width: auto;
        margin: 14px auto 0;
        padding: 8px 14px;
    }

    .zero-click-scroll {
        bottom: 18px;
    }

    .cv-engine-section {
        min-height: auto;
        padding: 70px clamp(14px, 4vw, 24px) 72px;
        grid-template-columns: 1fr;
        grid-template-areas:
            "title"
            "media"
            "copy";
        align-content: start;
    }

    .cv-engine-title {
        width: min(100%, 620px);
        justify-self: center;
    }

    .cv-engine-media {
        width: min(100%, 620px);
        justify-self: center;
        margin-bottom: 28px;
    }

    .cv-engine-title h3 {
        font-size: clamp(2.4rem, 11vw, 4rem);
        line-height: 0.96;
        text-align: center;
    }

    .cv-engine-content {
        width: min(100%, 620px);
        justify-self: center;
    }

    .cv-engine-content p {
        text-align: justify;
    }

    .cv-engine-link {
        display: inline-flex;
        width: auto;
        margin: 14px auto 0;
        padding: 8px 14px;
    }

    .cv-engine-scroll {
        bottom: 18px;
    }

    .print-media-section {
        min-height: auto;
        padding: 70px clamp(14px, 4vw, 24px) 72px;
        grid-template-columns: 1fr;
        grid-template-areas: "title" "wall" "copy";
        align-content: start;
    }

    .print-media-title {
        justify-self: center;
        width: min(100%, 680px);
    }

    .print-media-title h3 {
        font-size: clamp(2.4rem, 11vw, 4rem);
        line-height: 0.96;
        text-align: center;
    }

    .print-wall {
        width: min(100%, 720px);
        min-height: 0;
        justify-self: center;
        margin-bottom: 28px;
    }

    .print-slider {
        width: min(100%, 470px);
        aspect-ratio: 4 / 3;
    }

    .print-nav {
        width: 40px;
        height: 40px;
    }

    .print-media-content {
        justify-self: center;
        width: min(100%, 680px);
    }

    .print-media-content p {
        text-align: justify;
    }

    .print-media-scroll {
        bottom: 18px;
    }

    .user-stories-section {
        min-height: auto;
        padding: 70px clamp(14px, 4vw, 24px) 72px;
        grid-template-columns: 1fr;
        align-content: start;
    }

    .user-stories-media {
        width: min(100%, 620px);
        justify-self: center;
        margin-bottom: 28px;
    }

    .user-stories-media figcaption {
        text-align: right;
    }

    .user-stories-content h3 {
        font-size: clamp(2.4rem, 11vw, 4rem);
        line-height: 0.96;
        text-align: center;
    }

    .user-stories-content p {
        text-align: justify;
    }

    .user-stories-scroll {
        bottom: 18px;
    }

    .contact-section {
        min-height: auto;
        padding: 70px clamp(14px, 4vw, 24px) 50px;
        align-content: start;
    }

    .contact-content h3 {
        font-size: clamp(2.4rem, 11vw, 4rem);
        line-height: 0.96;
    }

    .contact-socials {
        gap: 14px;
    }

    .site-footer {
        padding: 16px 14px 20px;
    }

    .site-footer p {
        font-size: 0.7rem;
    }

    .now-then-media {
        border-radius: 0;
        min-height: 220px;
    }

    .now-then-title {
        top: 40px;
        left: 40px;
        font-size: clamp(3rem, 6vw, 5rem);
    }
}

/* iPad Mini / iPad Portrait */
@media (max-width: 820px) {
    .hero-wrapper {
        padding-top: 24px;
    }

    .torn-edge-container {
        width: min(100%, 650px);
    }

    .social-container {
        width: min(100%, 650px);
    }

    .text-side h1 {
        font-size: clamp(2.7rem, 10vw, 3.95rem);
    }
}

/* ANDROID COMMON WIDTHS (360-412) + IPHONE 12/13/14 */
@media (max-width: 480px) {
    .hero-wrapper {
        padding: 24px max(14px, env(safe-area-inset-right)) 20px max(14px, env(safe-area-inset-left));
        row-gap: 8px;
    }

    .torn-edge-container {
        width: min(100%, 450px);
    }

    .social-container {
        width: min(100%, 450px);
        gap: 12px;
        padding-top: 8px;
    }

    .top-menu {
        top: 10px;
        gap: 10px;
        padding: 0;
    }

    .menu-link {
        font-size: 0.74rem;
        letter-spacing: 1.1px;
    }

    .scroll-down {
        width: 42px;
        height: 42px;
        font-size: 0.92rem;
    }

    .social-icon {
        font-size: 1.45rem;
        width: 28px;
        height: 28px;
    }

    .text-side {
        padding: 18px 0 10px;
    }

    .text-side h1 {
        font-size: clamp(2.6rem, 13vw, 3.3rem);
    }

    .text-side h2 {
        letter-spacing: 2.4px;
    }

    .text-side p {
        font-size: 1em;
        line-height: 1.52;
        max-width: 95%;
    }

    .now-then-title {
        font-size: clamp(1.7rem, 10.5vw, 2.4rem);
    }
}

/* iPhone 12/13/14 (390) and similar */
@media (max-width: 390px) {
    .hero-wrapper {
        padding-top: 20px;
        padding-bottom: 18px;
    }

    .torn-edge-container {
        width: min(100%, 375px);
    }

    .social-container {
        width: min(100%, 375px);
    }

    .top-menu {
        gap: 8px;
    }

    .text-side h2 {
        font-size: 0.95rem;
        letter-spacing: 2px;
    }
}

/* SMALL PHONES */
@media (max-width: 360px) {
    .hero-wrapper {
        padding-left: max(12px, env(safe-area-inset-left));
        padding-right: max(12px, env(safe-area-inset-right));
    }

    .social-icon {
        font-size: 1.35rem;
    }

    .text-side h1 {
        font-size: 2.4rem;
    }
}

/* Very small phones (older iPhone SE / 320w Android) */
@media (max-width: 320px) {
    .hero-wrapper {
        padding-top: 16px;
        padding-bottom: 14px;
    }

    .torn-edge-container {
        width: 100%;
    }

    .social-container {
        width: 100%;
        gap: 10px;
    }

    .top-menu {
        right: max(10px, env(safe-area-inset-right));
        gap: 7px;
    }

    .text-side p {
        font-size: 1em;
    }
}
