/* ─── Reset & Base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg:       #EEEFFD;
    --navy:     #1C2B4A;
    --blue:     #2B63D9;
    --yellow:   #FDAB05;
    --teal:     #37C5A5;
    --lavender: #B2A7F9;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    background: var(--bg);
    color: var(--navy);
    font-family: 'Nunito', sans-serif;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ─── Nav ───────────────────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px clamp(32px, 5vw, 72px);
    transition: background 0.3s, padding 0.3s, border-color 0.3s, opacity 0.3s;
    border-bottom: 1px solid transparent;
    opacity: 1;
}

.nav--scrolled {
    opacity: 0;
    pointer-events: none;
}

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

.nav-logo-img {
    width: 90px;
    height: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    opacity: 0.65;
    transition: opacity 0.2s;
}
.nav-link:hover { opacity: 1; }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    background: var(--navy);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 100px;
    font-family: inherit;
    transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover {
    background: var(--blue);
    transform: translateY(-1px);
}

/* ─── Hero ──────────────────────────────────────────────────────────── */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100svh;
    overflow: hidden;
}

/* ── Left column ── */
.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(60px, 8vw, 100px) clamp(40px, 5vw, 72px);
    padding-top: clamp(100px, 12vw, 140px);
    gap: 28px;
    opacity: 0;
    animation: fade-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.hero-headline {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--navy);
}

.accent {
    position: relative;
    display: inline-block;
}

.wavy-underline {
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 10px;
    overflow: visible;
}

.hero-body {
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    font-weight: 400;
    line-height: 1.7;
    color: var(--navy);
    opacity: 0.6;
    max-width: 40ch;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 30px;
    background: var(--blue);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 100px;
    width: fit-content;
    font-family: inherit;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.hero-cta:hover {
    background: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(43, 99, 217, 0.25);
}

/* ── Right column ── */
.hero-right {
    position: relative;
    overflow: hidden;
}

/* ─── Balloons SVG ──────────────────────────────────────────────────── */
.balloons-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible; /* allows balloon tops to extend above the container */
}

/* Each balloon rises continuously from below the screen to above it.
   Different durations + negative delays keep them staggered at all times. */
.balloon-group--yellow {
    animation: rise 9s linear infinite;
    animation-delay: -2s;
}

.balloon-group--blue {
    animation: rise 12s linear infinite;
    animation-delay: -5s;
}

.balloon-group--teal {
    animation: rise 8s linear infinite;
    animation-delay: -1s;
}

.balloon-group--lavender {
    animation: rise 10s linear infinite;
    animation-delay: -7s;
}

/* ─── Rise Keyframe ─────────────────────────────────────────────────── */
/* Starts just below the viewport bottom, ends just above the top.
   A gentle sway via rotate makes it feel like a real floating balloon. */
@keyframes rise {
    0%   { transform: translateY(160vh) rotate(-2deg); }
    25%  { transform: translateY(80vh)  rotate(2deg);  }
    50%  { transform: translateY(0vh)   rotate(-1.5deg); }
    75%  { transform: translateY(-80vh) rotate(2deg);  }
    100% { transform: translateY(-160vh) rotate(-1deg); }
}

/* ─── Entry Animations ──────────────────────────────────────────────── */
@keyframes fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-down {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ─── Capabilities (scroll-pinned) ──────────────────────────────────── */

/* Outer section is 3× the viewport tall — gives us scroll room */
.caps {
    height: 300vh;
    position: relative;
}

/* Sticky viewport — stays centered while the section scrolls behind it */
.caps-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    align-items: center;
    padding: 0 clamp(40px, 6vw, 96px);
    overflow: hidden;
    border-top: 8px solid;
    border-bottom: 8px solid;
}

/* Full-bleed background tint */
.caps-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    transition: background 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
}

/* ── Left column ── */
.caps-left {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.caps-index {
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    font-weight: 800;
    letter-spacing: 0.12em;
    transition: color 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.caps-label-stack {
    position: relative;
    height: clamp(80px, 10vw, 110px);
}

.caps-label {
    position: absolute;
    top: 0; left: 0;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--navy);
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    white-space: nowrap;
}

.caps-label--active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Illustration layer — full-bleed behind everything */
.caps-illus-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    
}

.caps-illus {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    
}

.caps-illus--active {
    opacity: .3;
}

/* ── Right column ── */
.caps-right {
    position: relative;
    z-index: 1;
    padding: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: white;
    
    border-radius: 8px;
}

.caps-desc {
    position: relative;
    transform: translateY(16px);
    width: 100%;
    max-width: min(420px, 38vw);
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    line-height: 1.75;
    color: var(--navy);
    opacity: 0;
    transition:
        opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.08s,
        transform 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.08s;
    pointer-events: none;
    display: none;
}

.caps-desc em {
    font-style: normal;
    font-weight: 800;
}

.caps-desc--active {
    display: block;
    opacity: 0.65;
    transform: translateY(0);
    pointer-events: auto;
}

/* ── Progress dots ── */
.caps-dots {
    grid-column: 1 / -1;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding-bottom: clamp(32px, 4vh, 56px);
    position: relative;
    z-index: 1;
}

.caps-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(28, 43, 74, 0.2);
    transition: background 0.5s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), width 0.4s;
}

.caps-dot--active {
    width: 22px;
    border-radius: 999px;
    background: var(--navy);
    transform: none;
}

/* ─── Featured Work ─────────────────────────────────────────────────── */
.work {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 clamp(32px, 5vw, 72px);
    box-sizing: border-box;
}

/* ─── Polaroid Clothesline (work1) ──────────────────────────────────── */
#work1 {
    padding: 0 0 0 clamp(32px, 5vw, 72px);
    overflow: hidden;
    align-items: stretch;
    position: relative;
}

/* two-column layout — sits above the deco SVG */
.pl-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    width: 100%;
    height: 100%;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* left column: section copy */
.pl-left {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* right column: string at top, stack below, copy at bottom */
.pl-right {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    justify-content: center;
    padding-right: clamp(32px, 5vw, 72px);
    position: relative;
}

/* decorative balloon + string illustration */
.pl-deco {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* stack wrapper */
.pl-stack-wrap {
    position: relative;
    width: 100%;
    z-index: 1;
}

.pl-stack {
    position: relative;
    width: 100%;
    min-height: 300px;
}

/* individual hanging item — all absolutely stacked at same position */
.pl-item {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform-origin: top center;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                opacity  0.35s ease;
    will-change: transform, opacity;
}




/* polaroid card */
.pl-card {
    display: block;
    background: #ffffff;
    padding: 10px 10px 32px;
    border-radius: 4px;
    box-shadow:
        0 6px 24px rgba(28, 43, 74, 0.13),
        0 1px 4px rgba(28, 43, 74, 0.08);
    text-decoration: none;
    color: var(--navy);
    width: 100%;
    box-sizing: border-box;
    transition: box-shadow 0.3s ease;
}

.pl-card:hover {
    box-shadow:
        0 14px 36px rgba(28, 43, 74, 0.18),
        0 2px 8px rgba(28, 43, 74, 0.1);
}

.pl-card-img {
    width: 100%;
    height: 260px;
    overflow: hidden;
    border-radius: 2px;
    background: #f4f5f7;
}

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

/* bottom row: project title/role left, arrows right */
.pl-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-top: 20px;
}

.pl-project-copy {
    transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.pl-title {
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin: 0 0 4px;
}

.pl-role {
    font-size: 0.8rem;
    color: var(--navy);
    opacity: 0.45;
    margin: 0;
}

/* nav arrows */
.pl-nav {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    padding-top: 2px;
}

.pl-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(28, 43, 74, 0.15);
    background: #ffffff;
    color: var(--navy);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: inherit;
}

.pl-btn:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
    transform: scale(1.08);
}

/* Two-column split */
.work-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    width: 100%;
    align-items: center;
}

/* ── Left copy ── */
.work-copy {
    display: flex;
    flex-direction: column;
    gap: 28px;
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-copy.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.work-eyebrow {
    font-size: clamp(0.8rem, 1vw, 0.9rem);
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: lowercase;
    color: var(--navy);
    opacity: 0.4;
}

.work-heading {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--navy);
}

.work-blurb {
    font-size: clamp(0.92rem, 1.2vw, 1.05rem);
    line-height: 1.75;
    color: var(--navy);
    opacity: 0.55;
    max-width: 36ch;
}

.work-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    opacity: 0.5;
    transition: opacity 0.2s;
    width: fit-content;
}
.work-all:hover { opacity: 1; }

/* ── Right: project carousel ── */
.work-carousel {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    border-radius: 16px;
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-carousel.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* slide track */
.wc-track {
    display: flex;
    transition: transform 0.42s cubic-bezier(0.76, 0, 0.24, 1);
    will-change: transform;
}

/* individual slide */
.wc-slide {
    flex: 0 0 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 24px rgba(28, 43, 74, 0.10), 0 1px 4px rgba(28, 43, 74, 0.06);
    text-decoration: none;
    color: var(--navy);
    transition: box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.wc-slide:hover {
    box-shadow: 0 10px 36px rgba(28, 43, 74, 0.15), 0 2px 8px rgba(28, 43, 74, 0.08);
}

/* image */
.wc-img-wrap {
    overflow: hidden;
    line-height: 0;
    padding: 16px 16px 0;
}

.wc-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.wc-slide:hover .wc-img {
    transform: scale(1.025);
}

/* meta bar */
.wc-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px 16px;
}

.wc-info { flex: 1; min-width: 0; }

.wc-title {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.wc-role {
    font-size: 0.76rem;
    font-weight: 500;
    opacity: 0.45;
    margin-top: 3px;
}

.wc-arrow {
    font-size: 1.1rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.25s, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.wc-slide:hover .wc-arrow {
    opacity: 0.7;
    transform: translateX(0);
}

/* controls row */
.wc-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px;
}

/* dots */
.wc-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.wc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(28, 43, 74, 0.18);
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), width 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.wc-dot--active {
    background: var(--navy);
    width: 22px;
    border-radius: 999px;
}

/* arrow buttons */
.wc-arrows {
    display: flex;
    gap: 8px;
}

.wc-btn {
    width: auto;
    height: auto;
    border-radius: 0;
    border: none;
    background: none;
    color: var(--navy);
    font-size: 1rem;
    font-weight: 800;
    opacity: 0.5;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    padding: 0 4px;
    transition: opacity 0.2s;
    font-family: inherit;
}

.wc-btn:hover {
    opacity: 1;
    transform: none;
    background: none;
}

/* ─── Treasure Map (work2) ──────────────────────────────────────────── */
#work2 {
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse 80% 70% at 60% 50%, rgba(253,171,5,0.14) 0%, transparent 100%), var(--bg);
    padding: 0 clamp(32px, 5vw, 72px);
}

.tr-map-deco {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.tr-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    width: 100%;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* left copy */
.tr-copy {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tr-eyebrow {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #FDAB05;
}

.tr-heading {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #1C2B4A;
    margin: 0;
}

.tr-blurb {
    font-size: clamp(0.92rem, 1.2vw, 1.05rem);
    line-height: 1.75;
    color: #1C2B4A;
    opacity: 0.65;
    max-width: 36ch;
    margin: 0;
}

.tr-cta {
    display: inline-flex;
    align-items: center;
    font-size: 0.88rem;
    font-weight: 800;
    color: #1C2B4A;
    opacity: 0.55;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: opacity 0.2s;
    width: fit-content;
}
.tr-cta:hover { opacity: 1; }

.tr-launch-btn {
    display: none;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--navy);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    opacity: 1;
}
.tr-launch-btn:hover { opacity: 0.65; }

/* right carousel */
.tr-carousel {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    border-radius: 12px;
}

.tr-track {
    display: flex;
    transition: transform 0.42s cubic-bezier(0.76, 0, 0.24, 1);
    will-change: transform;
}

.tr-slide {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: #1C2B4A;
    background: #ffffff;
    border: 1.5px solid rgba(28,43,74,0.1);
    box-shadow: none;
    transition: box-shadow 0.25s, transform 0.25s cubic-bezier(0.16,1,0.3,1);
}

.tr-slide:hover {
    transform: translateY(-3px);
}

.tr-slide-img {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: #d8d8e8;
    padding: 14px;
}

.tr-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
    border-radius: 8px
}

.tr-slide:hover .tr-slide-img img { transform: scale(1.025); }

.tr-slide-meta {
    padding: 0px 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tr-stop {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #FDAB05;
}

.tr-slide-title {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin: 0;
    color: #1C2B4A;
}

.tr-slide-role {
    font-size: 0.76rem;
    font-weight: 500;
    opacity: 0.45;
    margin: 0;
}

.tr-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px;
}

/* treasure arrow buttons — just the arrow, no background or border */
.tr-btn {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    color: #1C2B4A !important;
    font-size: inherit !important;
    font-weight: 800 !important;
    opacity: 0.5;
    padding: 0 4px !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.tr-btn:hover {
    opacity: 1;
    transform: none !important;
    background: none !important;
}

/* ─── Responsive ────────────────────────────────────────────────────── */
/* ── hero CTA row: wraps the CTA link + balloon button ── */
.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ── mobile balloon button: hidden on desktop, shown at ≤768px ── */
.hero-balloon-btn {
    display: none;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--navy);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    opacity: 1;
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: 100vh;
    }

    .hero-left {
        padding: 100px 28px 48px;
    }

    .hero-body {
        max-width: none;
    }

    .hero-headline {
        line-height: 1.35;
    }

    .hero-right {
        display: none;
    }

    .hero-balloon-btn {
        display: inline-flex;
    }

    .nav-links {
        display: none;
    }

    .nav {
        padding: 20px 24px;
    }
    .nav--scrolled {
        padding: 14px 24px;
    }

    /* Work mobile: stack copy above carousel */
    .work {
        height: auto;
        padding: 64px 20px;
    }

    .work-body {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .work-heading {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    /* Caps mobile: scroll-pinned like desktop, single-column */
    .caps {
        height: 300vh;
    }

    .caps-sticky {
        position: sticky;
        top: 0;
        height: 100vh;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        align-items: start;
        align-content: center;
        padding: 80px 28px 40px;
        gap: 24px;
    }

    .caps-illus-wrap {
        display: none;
    }

    .caps-right {
        padding-left: 14px;
        display: block;
    }

    .caps-desc {
        max-width: 100%;
        transform: translateY(8px);
        transition: opacity 0.4s, transform 0.4s;
    }

    .caps-desc--active {
        opacity: 0.65;
        transform: translateY(0);
    }

    .caps-label-stack {
        height: clamp(80px, 20vw, 120px);
        position: relative;
    }

    .caps-label {
        white-space: normal;
        font-size: clamp(2.6rem, 9.5vw, 3.6rem);
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        opacity: 0;
        transform: translateY(24px);
    }

    .caps-label--active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .caps-desc {
        display: none;
    }

    .caps-desc--active {
        display: block;
    }

    /* Make the dots tappable / larger on mobile */
    .caps-dot {
        width: 10px;
        height: 10px;
        cursor: pointer;
    }

    .caps-dots {
        padding-top: 24px;
    }

    /* Treasure map (work2) mobile: stack copy above carousel */
    #work2 {
        height: auto;
        padding: 64px 20px;
    }

    .tr-carousel {
        max-width: 550px;
        width: 100%;
        margin: 0 auto;
    }

    .tr-map-deco {
        display: none;
    }

    .tr-launch-btn {
        display: inline-flex;
        align-self: flex-end;
    }

    /* Treasure game overlay: single column, riddle top / 3D bottom */
    .tr-ov-body {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: unset !important;
    }
    .tr-riddle-col {
        flex: 0 0 auto !important;
        width: 100% !important;
        padding: 80px 24px 20px !important;
        gap: 14px;
        justify-content: flex-start;
    }
    .tr-riddle-heading {
        font-size: clamp(1.6rem, 6vw, 2.2rem) !important;
    }
    .tr-3d-col {
        flex: 1 1 0 !important;
        min-height: 0 !important;
        width: 100% !important;
    }

    .tr-body {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tr-heading {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    /* Polaroid clothesline (work1) mobile: stack copy above polaroid */
    #work1 {
        height: auto;
        padding: 64px 20px;
    }

    .pl-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pl-right {
        padding-right: 0;
    }

    .pl-card-img {
        height: 200px;
    }

    /* Nav CTA: hide on mobile to avoid logo/button crowding */
    .nav-cta {
        display: none;
    }

    /* Testimonials: lock to viewport */
    #testimonials {
        height: 100svh;
        overflow-x: clip;
        overflow-y: visible;
        justify-content: flex-start;
    }

    .tl-clothesline-outer {
        padding: 0 0 32px;
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .tl-clothesline-outer::-webkit-scrollbar {
        display: none;
    }

    /* CTA section: full stack, everything visible */
    .cta-section {
        padding: 56px 20px;
    }

    .cta-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .cta-heading {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .cta-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-left: 0;
        width: 100%;
        min-width: 0;
    }

    .cta-logo {
        height: 36px;
        display: block;
    }

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

    /* Footer: stack vertically, center-aligned */
    .foot-wrap {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        padding: 40px 24px;
    }

    .foot-right {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

/* ════════════════════════════════════════
   TESTIMONIALS SECTION + PAPER PLANE GAME
   ════════════════════════════════════════ */

#testimonials {
    position: relative;
    background: var(--bg);
    overflow: hidden;
    border-top: 8px solid var(--navy);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tl-sky-deco {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.tl-clothesline-outer {
    flex-shrink: 0;
    width: 100%;
    padding: 0 clamp(24px, 6vw, 80px);
    box-sizing: border-box;
}

.tl-inner {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: clamp(24px, 4vw, 48px) clamp(24px, 6vw, 80px) 0;
    box-sizing: border-box;
}

/* two-column layout: left content, right featured card */
.tl-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}

.tl-left {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 0;
    animation: tl-float-copy 7s ease-in-out infinite;
    animation-delay: -1.2s;
}

.tl-featured {
    display: flex;
    align-items: stretch;
    min-width: 0;
}

.tl-card--featured {
    flex: 1;
    padding: clamp(24px, 2.5vw, 40px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    animation: tl-float-featured 6s ease-in-out infinite;
    animation-delay: -0.5s;
}
.tl-card--featured:hover {
    animation-play-state: paused;
}

.tl-card--featured blockquote {
    font-size: clamp(0.95rem, 1.4vw, 1.2rem);
    line-height: 1.55;
    margin: 0 0 20px;
}

.tl-card--featured cite {
    font-size: 0.8rem;
}

.tl-header {
    margin-bottom: 0;
}

.tl-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 16px;
}

.tl-heading {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    margin: 0 0 16px;
}

.tl-subhead {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    color: rgba(28, 43, 74, 0.6);
    margin: 0;
}

/* ── clothesline ── */
.tl-clothesline-wrap {
    position: relative;
}

.tl-card-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 2.5vw, 28px);
    padding-top: 24px;
    padding-bottom: clamp(32px, 5vw, 56px);
}

/* ── sticky-note cards ── */
.tl-card {
    position: relative;
    width: 100%;
    border-radius: 4px;
    padding: 22px 20px 24px;
    box-shadow:
        0 8px 28px rgba(28, 43, 74, 0.14),
        0 2px 6px rgba(28, 43, 74, 0.08);
    z-index: 1;
    transition: box-shadow 0.3s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: visible;
}

/* floating keyframes for cards and copy block */
@keyframes tl-float-a {
    0%, 100% { transform: rotate(-2deg) translateY(0px); }
    50%       { transform: rotate(-2deg) translateY(-7px); }
}
@keyframes tl-float-b {
    0%, 100% { transform: rotate(1.5deg) translateY(0px); }
    50%       { transform: rotate(1.5deg) translateY(-7px); }
}
@keyframes tl-float-featured {
    0%, 100% { transform: rotate(-1deg) translateY(0px); }
    50%       { transform: rotate(-1deg) translateY(-8px); }
}
@keyframes tl-float-copy {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50%       { transform: translateY(-14px) rotate(-1.2deg); }
}

/* alternating slight tilts like the illustration stickies */
.tl-card:nth-child(odd)  { animation: tl-float-a 5s ease-in-out infinite; }
.tl-card:nth-child(odd):nth-child(1)  { animation-delay: 0s; }
.tl-card:nth-child(odd):nth-child(3)  { animation-delay: -1.4s; }
.tl-card:nth-child(even) { animation: tl-float-b 5.6s ease-in-out infinite; }
.tl-card:nth-child(even):nth-child(2)  { animation-delay: -0.7s; }
.tl-card:nth-child(even):nth-child(4)  { animation-delay: -2.1s; }

.tl-card:hover {
    animation-play-state: paused;
    box-shadow:
        0 16px 40px rgba(28, 43, 74, 0.18),
        0 3px 10px rgba(28, 43, 74, 0.10);
    transform: rotate(0deg) translateY(4px) !important;
}

/* card color variants */
.tl-card--yellow   { background: #FDAB05; }
.tl-card--blue     { background: #1766FA; }
.tl-card--teal     { background: #37C5A5; }
.tl-card--lavender { background: #B2A7F9; }

/* folded corner — matches the sticky notes in the illustration */
.tl-fold {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 20px 20px 0;
    border-color: transparent rgba(28,43,74,0.18) transparent transparent;
    border-radius: 0 4px 0 0;
}


/* quote text — dark on yellow/teal/lavender, light on blue */
.tl-card blockquote {
    margin: 0 0 14px;
    font-size: clamp(0.8rem, 1.05vw, 0.94rem);
    line-height: 1.55;
    font-style: italic;
    font-weight: 600;
    color: rgba(28,43,74,0.75);
}

.tl-card--blue blockquote {
    color: rgba(255,255,255,0.85);
}

.tl-card cite {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.04em;
    color: rgba(28,43,74,0.5);
}

.tl-card--blue cite {
    color: rgba(255,255,255,0.6);
}

/* ── arc plane trigger ── */
#tl-trigger {
    transition: opacity 0.2s;
    pointer-events: all;
    outline: none;
    opacity: 1;
}
#tl-trigger:hover { opacity: 0.7; }

/* ── game HUD ── */
.tl-hud {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 32px;
    background: rgba(238,239,253,0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 999px;
    padding: 10px 28px;
    z-index: 210;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.tl-hud--visible {
    opacity: 1;
    pointer-events: auto;
}

.tl-hint {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(28,43,74,0.45);
    z-index: 210;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.tl-hint--visible {
    opacity: 1;
}

/* ── score legend ── */
.tl-legend {
    position: fixed;
    top: 24px;
    left: 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    background: rgba(238,239,253,0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 999px;
    padding: 10px 20px;
    z-index: 210;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.tl-legend--visible {
    opacity: 1;
}

.tl-legend-label {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(28,43,74,0.45);
}

.tl-legend-items {
    display: flex;
    flex-direction: row;
    gap: 12px;
}

.tl-legend-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--navy);
}

.tl-legend-swatch {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 3px;
    flex-shrink: 0;
}

.tl-hud-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.tl-hud-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(28,43,74,0.45);
}

.tl-timer {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--yellow);
    min-width: 2ch;
    text-align: center;
    transition: color 0.3s;
}

.tl-timer--urgent { color: #FF6B6B; }

.tl-score {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--teal);
    min-width: 2ch;
    text-align: center;
}

.tl-exit {
    position: fixed;
    z-index: 600;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: rgba(28,43,74,0.5);
    background: rgba(28,43,74,0.06);
    border: 1.5px solid rgba(28,43,74,0.12);
    border-radius: 999px;
    padding: 10px 24px;
    cursor: pointer;
    font-family: inherit;
}

.tl-exit:hover { background: rgba(28,43,74,0.1); color: var(--navy); }

.tl-exit--visible {
    opacity: 1;
    pointer-events: auto;
}

/* ── game canvas ── */
#tl-canvas {
    position: fixed;
    inset: 0;
    z-index: 205;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

#tl-canvas.tl--open {
    opacity: 1;
    pointer-events: auto;
}

/* ── game-over panel ── */
#tl-gameover-panel {
    position: fixed;
    inset: 0;
    z-index: 250;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#tl-gameover-panel.tl--visible {
    opacity: 1;
    pointer-events: auto;
}

.tl-panel-title {
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 800;
    color: var(--navy);
    margin: 0;
}

.tl-panel-sub {
    font-size: 17px;
    color: rgba(28,43,74,0.5);
    margin: 0;
}

/* drag aim line drawn on canvas — no extra CSS needed */

/* feedback toast */
.tl-feedback {
    position: fixed;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    background: rgba(28,43,74,0.88);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 999px;
    z-index: 215;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.tl-feedback.tl-feedback--show {
    opacity: 1;
}

/* base transitions so content fades smoothly in both directions */
.tl-inner,
.tl-clothesline-outer {
    transition: opacity 0.4s cubic-bezier(0.76, 0, 0.24, 1),
                transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

/* section content fades + scales down when game is active */
#testimonials.tl--game .tl-inner,
#testimonials.tl--game .tl-clothesline-outer {
    opacity: 0;
    transform: scale(0.97);
    pointer-events: none;
}

#testimonials.tl--game #tl-trigger {
    animation: none;
}

/* ── CTA Section ── */
.cta-section {
    background: var(--navy);
    padding: clamp(80px, 12vw, 140px) clamp(32px, 5vw, 72px);
    border-top: 8px solid var(--teal);
}

.cta-wrap {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.cta-logo {
    height: 48px;
    width: auto;
    max-width: none;
    object-fit: contain;
}

.cta-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.cta-eyebrow {
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.45;
}

.cta-heading {
    font-size: clamp(1.8rem, 4vw, 3.6rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #fff;
}


.cta-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    font-weight: 700;
    color: #fff;
    transition: opacity 0.2s;
}

.cta-contact svg {
    flex-shrink: 0;
    opacity: 0.5;
    width: 20px;
    height: 20px;
}

.cta-contact:hover {
    opacity: 0.75;
}

/* ── Footer ── */
.footer {
    background: var(--navy);
}

.foot-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px clamp(32px, 5vw, 72px);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.foot-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

#foot-logo {
    height: 48px;
    width: auto;
    opacity: 0.95;
}

.foot-email {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.01em;
    transition: opacity 0.2s;
}

.foot-email:hover {
    opacity: 0.75;
}

.foot-email > svg {
    flex-shrink: 0;
    opacity: 0.7;
    width: 18px;
    height: 18px;
}

.foot-email-text {
    position: relative;
}

.foot-copy {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.35);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ── plane fallback button: hidden on desktop, shown at tablet ── */
.tl-plane-btn {
    display: none;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--navy);
    background: none;
    border: none;
    padding: 0 clamp(16px, 4vw, 48px) 0 0;
    cursor: pointer;
    opacity: 0.55;
    transition: opacity 0.2s, transform 0.15s;
    width: fit-content;
}
.tl-plane-btn:hover { opacity: 1; transform: translateY(-2px); }

@media (max-width: 1200px) {
    .tl-sky-deco { display: none; }
    .tl-plane-btn { display: inline-flex; }
}

@media (max-width: 1050px) {
    .cta-right {
        flex-direction: column;
        align-items: flex-end;
        gap: 16px;
    }

    .cta-logo {
        height: 40px;
    }
}

@media (max-width: 450px) {
    .cta-section {
        padding: 48px 20px;
    }

    .cta-wrap {
        flex-direction: column;
        align-items: center;
        gap: 28px;
    }

    .cta-heading {
        font-size: clamp(1.8rem, 8vw, 2.2rem);
    }

    .cta-right {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-left: 0;
        width: 100%;
    }

    .cta-logo {
        height: 32px;
    }

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

@media (max-width: 992px) {
    .tl-legend {
        top: auto;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        flex-wrap: nowrap;
        white-space: nowrap;
        gap: 10px;
        padding: 8px 16px;
        border-radius: 999px;
    }

    .tl-legend-items {
        gap: 8px;
        flex-wrap: nowrap;
    }

    .tl-hint {
        bottom: 72px;
    }
}

/* ── responsive ── */
@media (max-width: 700px) {
    .tl-hud {
        left: 16px;
        transform: none;
    }

    .tl-exit {
        top: 20px;
        right: 16px;
        left: auto;
        bottom: auto;
        font-size: 13px;
        padding: 8px 18px;
    }


    /* horizontal scroll card row */
    .tl-card-row {
        display: flex;
        flex-wrap: nowrap;
        gap: 12px;
        padding: 16px 20px 28px;
        width: max-content;
    }

    .tl-card-row .tl-card {
        width: 200px;
        flex-shrink: 0;
        box-shadow: none;
    }

    /* single-column body */
    .tl-body {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* shrink heading to fit 100svh */
    .tl-heading {
        font-size: clamp(1.7rem, 7vw, 2.4rem);
        margin: 0 0 8px;
    }

    .tl-subhead {
        font-size: 0.9rem;
    }

    /* compact inner padding */
    .tl-inner {
        padding: 16px 20px 0;
    }

    /* featured card: constrain height so it fits in viewport */
    .tl-card--featured {
        min-height: 0;
        max-height: 32vh;
    }

    .tl-card--featured blockquote {
        font-size: 0.95rem;
    }

    .tl-card--featured cite {
        font-size: 0.75rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   LARGE SCREEN BREAKPOINTS
   Strategy: stepped font sizes at each breakpoint, fixed px values only.
   At 2000px+ content is locked — only margins grow via max-width centering.
   Never touch html { font-size } — that breaks all rem-based layout.
   ═══════════════════════════════════════════════════════════════════════ */

/* ── 1400px — card images only, no heading changes (clamp handles it) ── */
@media (min-width: 1400px) {
    .nav-logo-img               { width: 104px; }
    .pl-card-img,
    .tr-slide-img               { height: 300px; }
}

/* ── 1600px ── */
@media (min-width: 1600px) {
    .hero-headline,
    .caps-label,
    .work-heading,
    .tr-heading,
    .tl-heading,
    .cta-heading                { font-size: 3.9rem; }

    .hero-body,
    .work-blurb,
    .tr-blurb                   { font-size: 1.15rem; }

    .tl-subhead,
    .tl-card--featured blockquote { font-size: 1.2rem; }
    .tl-card--featured cite     { font-size: 0.88rem; }
    .tl-card blockquote         { font-size: 1rem; }
    .tl-card cite               { font-size: 0.76rem; }
    .caps-label-stack           { height: 122px; }
    .pl-card-img,
    .tr-slide-img               { height: 320px; }

    .nav-link                   { font-size: 17px; }
    .nav-cta                    { font-size: 16px; padding: 12px 26px; }
    .tl-hud-label               { font-size: 10px; }
    .tl-timer, .tl-score        { font-size: 42px; }
    .pl-btn svg, .wc-btn svg    { width: 20px; height: 20px; }
    .wc-dot                     { width: 10px; height: 10px; border-radius: 50%; }
    .wc-dot--active             { width: 28px; border-radius: 999px; }
    .caps-dot                   { width: 9px; height: 9px; border-radius: 50%; }
    .caps-dot--active           { width: 28px; border-radius: 999px; }
    .hero-cta                   { font-size: 16px; padding: 15px 32px; }
    .tl-exit                    { font-size: 16px; padding: 10px 26px; }
    .tl-legend-label            { font-size: 0.65rem; }
    .tl-legend-item             { font-size: 0.78rem; }
    .tl-legend-swatch           { width: 15px; height: 15px; }

    .nav { padding: 26px clamp(48px, 5vw, 96px); }
    .hero-left { padding-left: clamp(48px, 5vw, 96px); gap: 40px; }
    .caps-sticky { padding: 0 clamp(48px, 5vw, 96px); }
    .work { padding: 0 clamp(48px, 5vw, 96px); }
    #work2 { padding: 0 clamp(48px, 5vw, 96px); }
    .cta-section { padding-left: clamp(48px, 5vw, 96px); padding-right: clamp(48px, 5vw, 96px); }
    .foot-wrap { padding-left: clamp(48px, 5vw, 96px); padding-right: clamp(48px, 5vw, 96px); }
    #foot-logo                   { height: 70px; }
    .foot-email                  { font-size: 1.4rem; }
    .foot-email > svg            { width: 26px; height: 26px; }
    .foot-copy                   { font-size: 1.1rem; }
    .cta-logo                    { height: 56px; }
    .cta-contact                 { font-size: 1.2rem; }
    .cta-contact svg             { width: 22px; height: 22px; }
}

/* ── 1800px ── */
@media (min-width: 1800px) {
    .hero-headline,
    .caps-label,
    .work-heading,
    .tr-heading,
    .tl-heading,
    .cta-heading                { font-size: 4.9rem; }

    .hero-body,
    .work-blurb,
    .tr-blurb                   { font-size: 1.65rem; }

    .caps-desc                  { font-size: 1.35rem; }

    .tl-subhead,
    .tl-card--featured blockquote { font-size: 1.7rem; }
    .tl-card--featured cite     { font-size: 1.05rem; }
    .tl-card blockquote         { font-size: 1.35rem; }
    .tl-card cite               { font-size: 0.95rem; }
    .caps-label-stack           { height: 132px; }
    .pl-card-img,
    .tr-slide-img               { height: 340px; }
    .nav-logo-img               { width: 112px; }
    .nav-link                   { font-size: 20px; }
    .nav-cta                    { font-size: 19px; padding: 14px 30px; }
    .tl-hud-label               { font-size: 14px; }
    .tl-timer, .tl-score        { font-size: 48px; }
    .tl-hint                    { font-size: 0.82rem; }
    .pl-btn svg, .wc-btn svg    { width: 28px; height: 28px; }
    .wc-dot                     { width: 12px; height: 12px; border-radius: 50%; }
    .wc-dot--active             { width: 34px; border-radius: 999px; }
    .caps-dot                   { width: 11px; height: 11px; border-radius: 50%; }
    .caps-dot--active           { width: 34px; border-radius: 999px; }
    .hero-cta                   { font-size: 19px; padding: 16px 34px; }
    .tl-exit                    { font-size: 19px; padding: 12px 30px; }
    .tl-legend-label            { font-size: 0.88rem; }
    .tl-legend-item             { font-size: 1.05rem; }
    .tl-legend-swatch           { width: 19px; height: 19px; }

    .nav { padding: 28px clamp(64px, 5.5vw, 120px); }
    .hero-left { padding-left: clamp(64px, 5.5vw, 120px); gap: 52px; }
    .caps-sticky { padding: 0 clamp(64px, 5.5vw, 120px); }
    .work { padding: 0 clamp(64px, 5.5vw, 120px); }
    #work2 { padding: 0 clamp(64px, 5.5vw, 120px); }
    .cta-section { padding-left: clamp(64px, 5.5vw, 120px); padding-right: clamp(64px, 5.5vw, 120px); }
    .foot-wrap { padding-left: clamp(64px, 5.5vw, 120px); padding-right: clamp(64px, 5.5vw, 120px); }
    #foot-logo                   { height: 84px; }
    .foot-email                  { font-size: 1.7rem; }
    .foot-email > svg            { width: 30px; height: 30px; }
    .foot-copy                   { font-size: 1.3rem; }
    .cta-logo                    { height: 64px; }
    .cta-contact                 { font-size: 1.4rem; }
    .cta-contact svg             { width: 26px; height: 26px; }
}

/* ── 2000px+ — content locked, only margins grow ── */
@media (min-width: 2000px) {
    .hero-headline,
    .caps-label,
    .work-heading,
    .tr-heading,
    .tl-heading,
    .cta-heading                { font-size: 5.8rem; }

    .hero-body,
    .work-blurb,
    .tr-blurb                   { font-size: 1.9rem; }

    .caps-desc                  { font-size: 1.55rem; max-width: min(520px, 38vw); }

    .tl-subhead,
    .tl-card--featured blockquote { font-size: 1.9rem; }
    .tl-card--featured cite     { font-size: 1.2rem; }
    .tl-card blockquote         { font-size: 1.45rem; }
    .tl-card cite               { font-size: 1rem; }
    .caps-label-stack           { height: 142px; }
    .pl-card-img,
    .tr-slide-img               { height: 380px; }

    .nav-logo-img               { width: 132px; }
    .nav-link                   { font-size: 22px; }
    .nav-cta                    { font-size: 20px; padding: 15px 32px; }
    .tl-hud-label               { font-size: 16px; }
    .tl-timer, .tl-score        { font-size: 54px; }
    .tl-hint                    { font-size: 0.95rem; }
    .pl-btn svg, .wc-btn svg    { width: 32px; height: 32px; }
    .wc-dot                     { width: 14px; height: 14px; border-radius: 50%; }
    .wc-dot--active             { width: 40px; border-radius: 999px; }
    .caps-dot                   { width: 13px; height: 13px; border-radius: 50%; }
    .caps-dot--active           { width: 40px; border-radius: 999px; }
    .hero-cta                   { font-size: 19px; padding: 18px 38px; }
    .tl-exit                    { font-size: 22px; padding: 14px 34px; }
    .tl-legend-label            { font-size: 1rem; }
    .tl-legend-item             { font-size: 1.2rem; }
    .tl-legend-swatch           { width: 22px; height: 22px; }
    .work-eyebrow,
    .tr-eyebrow                 { font-size: 1rem; }
    .tr-stop                    { font-size: 0.8rem; }
    .pl-title                   { font-size: 2rem; }
    .pl-role,
    .wc-role,
    .tr-slide-role              { font-size: 0.92rem; }
    .wc-title,
    .tr-slide-title             { font-size: 1.2rem; }
    .caps-index                 { font-size: 1.3rem; }
    .tl-eyebrow                 { font-size: 0.9rem; }

    /* Margins grow — content stays at 1800px wide, centred */
    .nav {
        max-width: 100%;
        padding-left: calc((100vw - 1800px) / 2 + 64px);
        padding-right: calc((100vw - 1800px) / 2 + 64px);
    }
    .hero-left {
        padding-left: 72px;
        gap: 64px;
    }
    .caps-sticky {
        padding-left: calc((100vw - 1800px) / 2 + 64px);
        padding-right: calc((100vw - 1800px) / 2 + 64px);
    }
    .work {
        padding-left: calc((100vw - 1800px) / 2 + 64px);
        padding-right: calc((100vw - 1800px) / 2 + 64px);
    }
    #work2 {
        padding-left: calc((100vw - 1800px) / 2 + 64px);
        padding-right: calc((100vw - 1800px) / 2 + 64px);
    }
    #testimonials .tl-inner {
        max-width: 1800px;
        padding-left: 64px;
        padding-right: 64px;
    }
    #testimonials .tl-clothesline-outer {
        max-width: 1800px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 64px;
        padding-right: 64px;
    }
    .cta-wrap {
        max-width: 1800px;
    }
    .foot-wrap {
        max-width: 1800px;
        padding-left: 64px;
        padding-right: 64px;
    }
    #foot-logo                   { height: 100px; }
    .foot-email                  { font-size: 2rem; }
    .foot-email > svg            { width: 36px; height: 36px; }
    .foot-copy                   { font-size: 1.5rem; }
    .cta-logo                    { height: 72px; }
    .cta-contact                 { font-size: 1.6rem; }
    .cta-contact svg             { width: 30px; height: 30px; }
}

/* ── 2400px+ — push content wider to fill ultrawide, then lock ── */
@media (min-width: 2400px) {
    .caps-label,
    .work-heading,
    .tr-heading,
    .tl-heading,
    .cta-heading                { font-size: 6.4rem; }

    .hero-headline              { font-size: 5rem; }

    .hero-body,
    .work-blurb,
    .tr-blurb                   { font-size: 2.05rem; }

    .caps-desc                  { font-size: 1.7rem; max-width: min(580px, 38vw); }

    .tl-subhead,
    .tl-card--featured blockquote { font-size: 2.1rem; }
    .tl-card--featured cite     { font-size: 1.3rem; }
    .tl-card blockquote         { font-size: 1.6rem; }
    .tl-card cite               { font-size: 1.1rem; }
    .caps-label-stack           { height: 158px; }
    .pl-card-img,
    .tr-slide-img               { height: 420px; }

    .nav-logo-img               { width: 148px; }
    .nav-link                   { font-size: 24px; }
    .nav-cta                    { font-size: 22px; padding: 16px 36px; }
    .pl-btn svg, .wc-btn svg    { width: 34px; height: 34px; }
    .wc-dot                     { width: 16px; height: 16px; border-radius: 50%; }
    .wc-dot--active             { width: 46px; border-radius: 999px; }
    .caps-dot                   { width: 15px; height: 15px; border-radius: 50%; }
    .caps-dot--active           { width: 46px; border-radius: 999px; }
    .hero-cta                   { font-size: 21px; padding: 20px 42px; }
    .pl-title                   { font-size: 2.25rem; }
    .wc-title,
    .tr-slide-title             { font-size: 1.35rem; }
    .pl-role,
    .wc-role,
    .tr-slide-role              { font-size: 1rem; }
    .work-eyebrow,
    .tr-eyebrow                 { font-size: 1.1rem; }
    .caps-index                 { font-size: 1.45rem; }
    .tl-eyebrow                 { font-size: 1rem; }
    .tl-hud-label               { font-size: 18px; }
    .tl-hint                    { font-size: 1.1rem; }
    .tl-legend-label            { font-size: 1.15rem; }
    .tl-legend-item             { font-size: 1.38rem; }
    .tl-legend-swatch           { width: 25px; height: 25px; }

    /* Expand content container to 2200px for ultrawide */
    .nav {
        padding-left: calc((100vw - 2200px) / 2 + 72px);
        padding-right: calc((100vw - 2200px) / 2 + 72px);
    }
    .hero-left {
        padding-left: calc((100vw - 2200px) / 2 + 72px);
    }
    .caps-sticky {
        padding-left: calc((100vw - 2200px) / 2 + 72px);
        padding-right: calc((100vw - 2200px) / 2 + 72px);
    }
    .work {
        padding-left: calc((100vw - 2200px) / 2 + 72px);
        padding-right: calc((100vw - 2200px) / 2 + 72px);
    }
    #work2 {
        padding-left: calc((100vw - 2200px) / 2 + 72px);
        padding-right: calc((100vw - 2200px) / 2 + 72px);
    }
    #testimonials .tl-inner {
        max-width: 2200px;
        padding-left: 72px;
        padding-right: 72px;
    }
    #testimonials .tl-clothesline-outer {
        max-width: 2200px;
        padding-left: 72px;
        padding-right: 72px;
    }
    .cta-wrap {
        max-width: 2200px;
    }
    .foot-wrap {
        max-width: 2200px;
        padding-left: 72px;
        padding-right: 72px;
    }
    #foot-logo                   { height: 116px; }
    .foot-email                  { font-size: 2.3rem; }
    .foot-email > svg            { width: 42px; height: 42px; }
    .foot-copy                   { font-size: 1.7rem; }
    .cta-logo                    { height: 84px; }
    .cta-contact                 { font-size: 1.85rem; }
    .cta-contact svg             { width: 34px; height: 34px; }
}
