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

  body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: url('/images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #222222;
    line-height: 1.4;
    font-weight: 400;
}

      header {
    padding: 2rem 2rem;
    border-bottom: 1px solid #e8e8e8;
}

      nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

        .logo {
            text-decoration: none;
            color: #222;
        }

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

.logo-name {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.logo-title {
    font-size: 1.2rem;
    font-weight: 400;
    color: #0000FF;
}

        nav ul {
            list-style: none;
            display: flex;
            gap: 2rem;
        }

     nav a.nav-link {
    color: #222;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

        nav a.nav-link:hover {
            color: #999;
        }

   main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem;
}

     h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
    color: #222;
}
       .projects {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

    .project-card {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
    position: relative;
}

      .project-image {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
    background: #f5f5f5;
}

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

        .project-card:hover .project-image img {
            opacity: 0.85;
        }

     .project-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    pointer-events: none;
}

.project-card:hover .project-info {
    background: rgba(0, 0, 0, 0.7);
}

.project-info h2 {
    font-size: 1.8rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: -0.01em;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    padding: 0 1rem;
}

.project-card:hover .project-info h2 {
    opacity: 1;
}

        .project-detail {
            display: none;
        }

        .project-detail.active {
            display: block;
        }

   .project-detail h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-align: center;
}

.project-detail h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.0rem;
    font-weight: 300;
    line-height: 1.5;
    color: #444;
    text-align: left;
    width: 680px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.9rem;
    display: block;
    text-wrap: pretty;
}

.project-desc-wrap {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
        .project-credit {
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            font-size: 0.9rem;
            font-weight: 400;
            color: #777;
            width: 680px;
            max-width: 100%;
            margin: 0 auto 3rem;
            text-align: left;
        }

        .project-detail h2 a {
            color: #444;
            text-decoration: underline;
        }

        .project-detail h2 a:hover {
            color: #999;
        }

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

        .videos-grid.single-video {
            grid-template-columns: 1fr;
        }

      .video-item {
    margin-bottom: 1.5rem;
}

.video-item .video-title {
    order: 2;
    margin-top: 0.75rem;
    margin-bottom: 0.25rem;
}

.video-item .video-role {
    order: 3;
}

.video-item .video-container {
    order: 1;
    margin-top: 0;
}

.video-item {
    display: flex;
    flex-direction: column;
}

        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            margin-top: 1rem;
        }

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

        .video-facade {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
            background: #000;
        }

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

        .facade-play {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.65);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease, transform 0.3s ease;
        }

        .video-facade:hover .facade-play,
        .video-facade:focus .facade-play {
            background: #000;
            transform: translate(-50%, -50%) scale(1.08);
        }

        .facade-play svg {
            width: 26px;
            height: 26px;
            fill: #fff;
            margin-left: 3px;
        }

  .video-title {
    font-size: 1.0rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #222;
}

.video-role {
    font-size: 1.0rem;
    font-weight: 400;
    color: #222;
}
        .bottom-nav {
            border-top: 1px solid #e8e8e8;
            padding: 2rem 0;
            margin-top: 4rem;
        }

        .bottom-nav-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

        .bottom-nav-links a {
            color: #222;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }

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

      .about-section {
    display: none;
    max-width: 900px;
    margin: 0 auto;
}

        .about-section.active {
            display: block;
        }

        .about-section h1 {
            display: none;
        }

        .about-block {
            margin-bottom: 4rem;
        }

    .about-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: center;
}

        .about-text {
            flex: 1;
        }

        .about-section h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

      .about-section p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #444;
    margin-bottom: 1rem;
    font-weight: 400;
}

 .about-image {
    width: 432px;
    flex-shrink: 0;
}

        .about-image img,
        .about-image video {
            width: 100%;
            height: auto;
            display: block;
        }

   .contact-btn {
    display: block;
    margin: 5rem auto 4rem;
    padding: 0.86rem 2.3rem;
    background: white;
    color: #222;
    text-decoration: none;
    font-size: 1.09rem;
    font-weight: 400;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #222;
    border-radius: 50px;
    width: fit-content;
}

.contact-btn:hover {
    background: #222;
    color: white;
}
        .contact-btn:focus-visible { outline: 2px solid #0000FF; outline-offset: 3px; }
        @media (prefers-reduced-motion: reduce) {
            .contact-btn { transition: none; }
        }
        .archive-section {
            display: none;
        }

        .archive-section.active {
            display: block;
        }

        .archive-section h1 {
            display: none;
        }

        .work-section {
            display: none;
        }
	
	.work-section h1 {
	    display: none;
	}

        .work-section.active {
            display: block;
        }

        @media (max-width: 768px) {
            header {
                padding: 1.5rem 2rem;
            }

            nav ul {
                gap: 1.5rem;
            }

            main {
                padding: 3rem 2rem;
            }

            h1 {
                font-size: 2rem;
            }

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

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

            .about-content {
                flex-direction: column;
            }

            .about-image {
                width: 100%;
            }

            .project-detail h1 {
                font-size: 2rem;
            }

            .project-detail h2 {
                font-size: 1.1rem;
            }

            .about-section h2 {
                font-size: 1.5rem;
            }

            .about-section p {
                font-size: 1rem;
            }

            .archive-list li {
                font-size: 1.1rem;
            }

            .bottom-nav-links {
                gap: 1rem;
            }
        }

        @media (max-width: 480px) {
            nav ul {
                gap: 1rem;
            }

            nav a.nav-link {
                font-size: 0.85rem;
            }

            .logo-name {
                font-size: 1rem;
            }

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

        html {
            scroll-behavior: smooth;
        }
    
        /* --- multi-paragraph project descriptions --- */
        .project-desc-wrap.multi { flex-direction: column; align-items: stretch; }
        .project-desc-wrap.multi h2 { margin-bottom: 0.9rem; }
        .project-desc-wrap.multi p.desc {
            font-family: Georgia, 'Times New Roman', serif;
            font-size: 1.0rem; font-weight: 300; line-height: 1.5;
            color: #444; text-align: left; width: 680px; max-width: 100%;
            margin: 0 auto 0.9rem; text-wrap: pretty;
        }
        .project-desc-wrap.multi p.desc.last { margin-bottom: 0.9rem; }

        /* --- campaign assets --- */
        .campaign { max-width: 1200px; margin: 3.5rem auto 0; }
        .campaign-label {
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em;
            text-transform: uppercase; color: #999; text-align: center;
            margin-bottom: 1.5rem;
        }
        .asset-wide { margin: 0 0 1.25rem; }
        .asset-wide img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
        .assets-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
        .asset { margin: 0; }
        .asset img {
            width: 100%; aspect-ratio: 9 / 16; object-fit: cover;
            display: block; background: #f5f5f5;
        }
        .asset figcaption, .asset-wide figcaption {
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            font-size: 0.8rem; color: #777; margin-top: 0.5rem; text-align: left;
        }
        .campaign .videos-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
        .campaign .video-item { margin-bottom: 0; }
        .campaign .asset-wide, .campaign .assets-row { margin-top: 2.5rem; }
        .campaign .asset-wide + .assets-row { margin-top: 1.25rem; }
        .campaign.uniform .asset-wide { display: none; }
        @media (max-width: 768px) {
            .assets-row { grid-template-columns: repeat(2, 1fr); }
            .campaign .videos-grid { grid-template-columns: 1fr; }
        }
    
        .elsewhere {
            display: flex;
            justify-content: center;
            gap: 1.4rem;
            margin: -2rem 0 4rem;
        }
        .elsewhere a {
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            font-size: 0.9rem;
            color: #777;
            text-decoration: none;
            border-bottom: 1px solid #ddd;
            padding-bottom: 2px;
            transition: color 0.2s ease, border-color 0.2s ease;
        }
        .elsewhere a:hover { color: #0000FF; border-color: #0000FF; }
        .elsewhere a:focus-visible { outline: 2px solid #0000FF; outline-offset: 3px; }

/* ---- generated: static-page adjustments ---- */
.project-credit.byline {
    width: auto;
    max-width: none;
    margin: 0 0 1.6rem;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #999;
}
.project-credit.subtitle {
    width: auto;
    max-width: none;
    margin: 0.15rem 0 1.9rem;
    text-align: center;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 0.95rem;
    font-weight: 400;
    font-style: italic;
    color: #777;
}
.project-desc-wrap p.desc.last,
.project-detail h2 { margin-bottom: 2.6rem; }
.project-desc-wrap.multi p.desc { margin-bottom: 0.9rem; }
.project-desc-wrap.multi p.desc.last { margin-bottom: 2.6rem; }
.campaign { margin-top: 3rem; }

/* Project description type lives HERE and nowhere else.
   The first paragraph is an <h2> and the rest are <p class="desc">; they must
   always render identically. This block is appended last so it wins on source
   order — earlier definitions are overridden on purpose. */
.project-detail h2,
.project-desc-wrap.multi p.desc { font-size: 1.0rem; line-height: 1.5; }
@media (max-width: 768px) {
    .project-detail h2,
    .project-desc-wrap.multi p.desc { font-size: 1.1rem; line-height: 1.5; }
}

/* ---------- mobile pass ----------
   Principle: headings scale DOWN on small screens (less room to fill), body
   text stays at its comfortable reading size. The old rules did the opposite —
   project titles were 20.8px on desktop and 32px on a phone. */

@media (max-width: 768px) {
    .work-section h1,
    .archive-section h1            { font-size: 1.8rem; }
    .project-detail h1             { font-size: 1.45rem; }
    .about-section h2              { font-size: 1.4rem; }
    .about-section p               { font-size: 1.1rem; line-height: 1.5; }
    .video-title, .video-role      { font-size: 0.95rem; }
    .campaign-label                { font-size: 0.7rem; }
}

/* No hover on a phone, so the overlay label never appeared and the grid showed
   images with no project names. Below the breakpoint the label leaves the
   overlay and sits under the thumbnail as ordinary text. */
@media (hover: none), (max-width: 768px) {
    .project-info {
        position: static;
        background: none;
        display: block;
        pointer-events: auto;
        margin-top: 0.55rem;
    }
    .project-info h2 {
        opacity: 1;
        color: #222;
        font-size: 1.05rem;
        text-align: left;
        padding: 0;
    }
    .project-card:hover .project-info { background: none; }
}

/* Two videos side by side is 147px each on a 390px screen. */
@media (max-width: 600px) {
    .videos-grid,
    .campaign .videos-grid         { grid-template-columns: 1fr; gap: 1.75rem; }
}

/* ---------- vertical (9:16) videos ----------
   Douyin and Shorts-native pieces were being pillarboxed inside a 16:9 frame.
   Mark the item `.vertical` and it renders at its true ratio, capped to roughly
   phone width so it doesn't run absurdly tall on a desktop column. */
.video-item.vertical .video-container { padding-bottom: 177.78%; }
.video-item.vertical {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
.videos-grid.verticals { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
    .videos-grid.verticals { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .videos-grid.verticals,
    .campaign .videos-grid.verticals { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    header                         { padding: 1.25rem; }
    main                           { padding: 2rem 1.25rem; }
    .logo                          { flex-direction: column; align-items: flex-start; gap: 0.1rem; }
    nav ul                         { gap: 1rem; }
    .work-section h1,
    .archive-section h1            { font-size: 1.6rem; }
    .project-detail h1             { font-size: 1.35rem; }
    .campaign .asset-wide,
    .campaign .assets-row          { margin-top: 1.75rem; }
}
