/* ----------------------------------------------------------------------
   RADEN — An expression of nature's beauty through wearable art
---------------------------------------------------------------------- */

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

:root {
    --bg-noir:    #0a0a0a;
    --bg-warm:    #2d1f1b;
    --bg-deep:    #1a1410;
    --ink-cream:  #d1c8b3;
    --ink-mute:   rgba(209, 200, 179, 0.5);
    --ink-faint:  rgba(209, 200, 179, 0.32);
    --line:       rgba(209, 200, 179, 0.14);
    --line-soft:  rgba(209, 200, 179, 0.08);

    --sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --ease:  cubic-bezier(0.16, 1, 0.3, 1);
    --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    background: var(--bg-noir);
    color: var(--ink-cream);
    font-weight: 300;
    line-height: 1.55;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { background: none; border: 0; color: inherit; font: inherit; cursor: pointer; }

/* ============================== Navigation ============================== */

.nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.6rem 2rem;
    color: var(--ink-cream);
    mix-blend-mode: difference;
    pointer-events: none;
}
.nav > * { pointer-events: auto; }

.nav-logo,
.nav-menu {
    font-size: 0.72rem;
    letter-spacing: 0.42em;
    font-weight: 400;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    transition: opacity 0.6s var(--ease), letter-spacing 0.6s var(--ease);
}
.nav-logo::after,
.nav-menu::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    height: 1px;
    width: 0;
    background: var(--ink-cream);
    transition: width 0.6s var(--ease);
}
.nav-logo:hover::after,
.nav-menu:hover::after { width: 100%; }
.nav-logo:hover,
.nav-menu:hover { letter-spacing: 0.48em; }

/* ============================== Menu Overlay ============================== */

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}
.menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.menu-veil {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(20px) saturate(120%);
    -webkit-backdrop-filter: blur(20px) saturate(120%);
}

.menu-inner {
    position: relative;
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr auto;
    padding: 1.6rem 2rem 2rem;
    color: var(--ink-cream);
}

.menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menu-mark {
    font-size: 0.72rem;
    letter-spacing: 0.42em;
    font-weight: 400;
}
.menu-close {
    font-size: 0.72rem;
    letter-spacing: 0.42em;
    font-weight: 400;
    position: relative;
    transition: letter-spacing 0.6s var(--ease);
}
.menu-close::after {
    content: '';
    position: absolute;
    left: 0; bottom: -0.35rem;
    height: 1px; width: 0;
    background: var(--ink-cream);
    transition: width 0.6s var(--ease);
}
.menu-close:hover::after { width: 100%; }
.menu-close:hover { letter-spacing: 0.48em; }

.menu-body {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 6rem;
    align-content: center;
    padding: 4rem 0;
}

.menu-label {
    font-size: 0.625rem;
    letter-spacing: 0.32em;
    color: var(--ink-mute);
    font-weight: 400;
    margin-bottom: 2.25rem;
    text-transform: uppercase;
}

.menu-list li,
.menu-contact li {
    overflow: hidden;
}

.menu-list li a {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 1.5rem;
    align-items: baseline;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 200;
    letter-spacing: -0.01em;
    color: var(--ink-cream);
    transition: padding 0.6s var(--ease), color 0.4s var(--ease);
    position: relative;
}
.menu-list li a span {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--ink-faint);
    font-weight: 400;
    transition: color 0.6s var(--ease), transform 0.6s var(--ease);
}
.menu-list li a:hover {
    padding-left: 1rem;
}
.menu-list li a:hover span {
    color: var(--ink-cream);
    transform: translateX(-0.25rem);
}

.menu-contact li {
    padding: 0.7rem 0;
    font-size: 1rem;
    font-weight: 300;
    color: var(--ink-cream);
}
.menu-contact li a {
    transition: opacity 0.4s var(--ease);
    display: inline-block;
    position: relative;
}
.menu-contact li a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -0.2rem;
    height: 1px; width: 0;
    background: var(--ink-cream);
    transition: width 0.5s var(--ease);
}
.menu-contact li a:hover::after { width: 100%; }

.menu-cta {
    display: inline-block;
    margin-top: 2.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    padding: 1.1rem 2.5rem;
    border: 1px solid var(--ink-faint);
    color: var(--ink-cream);
    transition: background 0.5s var(--ease), color 0.5s var(--ease), border-color 0.5s var(--ease), letter-spacing 0.5s var(--ease);
}
.menu-cta:hover {
    background: var(--ink-cream);
    color: var(--bg-noir);
    border-color: var(--ink-cream);
    letter-spacing: 0.36em;
}

.menu-foot {
    display: flex;
    justify-content: space-between;
    font-size: 0.625rem;
    letter-spacing: 0.18em;
    color: var(--ink-mute);
    font-weight: 400;
    text-transform: uppercase;
}

/* menu open animation — links slide in */
.menu-overlay .menu-list li a,
.menu-overlay .menu-contact li,
.menu-overlay .menu-cta {
    opacity: 0;
    transform: translateY(1rem);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease),
                padding 0.6s var(--ease), color 0.4s var(--ease),
                background 0.5s var(--ease), border-color 0.5s var(--ease), letter-spacing 0.5s var(--ease);
}
.menu-overlay.is-open .menu-list li:nth-child(1) a { transition-delay: 0.15s; opacity: 1; transform: none; }
.menu-overlay.is-open .menu-list li:nth-child(2) a { transition-delay: 0.20s; opacity: 1; transform: none; }
.menu-overlay.is-open .menu-list li:nth-child(3) a { transition-delay: 0.25s; opacity: 1; transform: none; }
.menu-overlay.is-open .menu-list li:nth-child(4) a { transition-delay: 0.30s; opacity: 1; transform: none; }
.menu-overlay.is-open .menu-list li:nth-child(5) a { transition-delay: 0.35s; opacity: 1; transform: none; }
.menu-overlay.is-open .menu-list li:nth-child(6) a { transition-delay: 0.40s; opacity: 1; transform: none; }
.menu-overlay.is-open .menu-contact li:nth-child(1) { transition-delay: 0.25s; opacity: 1; transform: none; }
.menu-overlay.is-open .menu-contact li:nth-child(2) { transition-delay: 0.30s; opacity: 1; transform: none; }
.menu-overlay.is-open .menu-contact li:nth-child(3) { transition-delay: 0.35s; opacity: 1; transform: none; }
.menu-overlay.is-open .menu-contact li:nth-child(4) { transition-delay: 0.40s; opacity: 1; transform: none; }
.menu-overlay.is-open .menu-cta { transition-delay: 0.5s; opacity: 1; transform: none; }

/* ============================== Hero ============================== */

.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: var(--bg-noir);
}

.hero-video {
    position: absolute;
    top: 50%; left: 50%;
    width: 100vw; height: 100vh;
    min-width: 100vw; min-height: 100vh;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center center;
    z-index: 0;
    background: var(--bg-noir);
    display: block;
    pointer-events: none;
}
.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-panel,
.hero-video::-webkit-media-controls-play-button,
.hero-video::-webkit-media-controls-start-playback-button,
.hero-video::-webkit-media-controls-overlay-play-button,
.hero-video::-webkit-media-controls-overlay-enclosure,
.hero-video::-webkit-media-controls-enclosure {
    display: none !important;
    -webkit-appearance: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.hero-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.65) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    padding: 0 2rem 12rem;
    gap: 2rem;
    color: var(--ink-cream);
}

.hero-col p {
    font-size: 0.625rem;
    letter-spacing: 0.18em;
    line-height: 1.7;
    text-transform: uppercase;
    color: rgba(209, 200, 179, 0.55);
    max-width: 22rem;
    font-weight: 400;
}
.hero-col-left p:first-child { margin-bottom: 0.5rem; }
.hero-col-center { text-align: center; }
.hero-col-center p { margin: 0 auto; }

.hero-wordmark {
    position: absolute;
    left: 50%;
    bottom: 4.5rem;
    transform: translateX(-50%);
    font-family: var(--sans);
    font-weight: 200;
    font-size: clamp(5rem, 20vw, 18rem);
    letter-spacing: 0.04em;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--ink-cream);
    z-index: 2;
    white-space: nowrap;
    line-height: 0.85;
    margin: 0;
}

/* ============================== Services ============================== */

.services {
    background: var(--bg-noir);
    padding: 6rem 0 8rem;
    position: relative;
}

.services-imgs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 0 2rem;
    margin-bottom: 6rem;
}

.services-img {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--bg-deep);
}
.services-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease), filter 0.8s var(--ease);
}
.services-img:hover img {
    transform: scale(1.04);
    filter: brightness(1.06);
}

.services-title {
    font-family: var(--sans);
    font-weight: 200;
    font-size: clamp(3.5rem, 9vw, 8.1rem);
    line-height: 1;
    letter-spacing: -0.02em;
    padding: 0 2rem;
    margin: 0 0 6rem;
}
.services-title .fill,
.services-title .outline {
    display: block;
}
.services-title .fill { color: var(--ink-cream); }
.services-title .outline {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--ink-cream);
    margin-top: 0.1em;
}

.service-row {
    display: grid;
    grid-template-columns: 2.5rem auto 1fr 2.5rem;
    align-items: baseline;
    gap: 2rem;
    padding: 2rem 2rem;
    border-top: 1px solid var(--line);
    position: relative;
    transition: background 0.5s var(--ease);
}
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-row::before {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 1px;
    background: var(--ink-cream);
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.8s var(--ease);
    z-index: 1;
}
.service-row:hover::before { transform: scaleX(1); }
.service-row:hover { background: rgba(209, 200, 179, 0.02); }

.service-num,
.service-num-right {
    font-size: 0.69rem;
    letter-spacing: 0.2em;
    color: var(--ink-mute);
    font-weight: 400;
    transition: color 0.5s var(--ease);
}
.service-num-right { text-align: right; }
.service-row:hover .service-num,
.service-row:hover .service-num-right { color: var(--ink-cream); }

.service-name {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    letter-spacing: -0.01em;
    line-height: 1;
    color: var(--ink-cream);
    transition: transform 0.7s var(--ease);
}
.service-row:hover .service-name { transform: translateX(0.5rem); }

.service-desc {
    font-size: 0.69rem;
    letter-spacing: 0.04em;
    line-height: 1.7;
    color: var(--ink-mute);
    max-width: 22rem;
    margin-left: auto;
    text-align: left;
    font-weight: 400;
    transition: color 0.5s var(--ease);
}
.service-row:hover .service-desc { color: rgba(209, 200, 179, 0.75); }

/* ============================== About — Biography ============================== */

.about {
    background: var(--bg-warm);
    padding: 6rem 0 8rem;
    position: relative;
    color: var(--ink-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: 5rem;
    padding: 0 2rem;
    align-items: start;
}

.about-portrait {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--bg-deep);
}
.about-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--ease), filter 1s var(--ease);
}
.about-portrait:hover img {
    transform: scale(1.03);
    filter: brightness(1.05);
}
.about-portrait figcaption {
    position: absolute;
    left: 1.5rem;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.625rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-cream);
    font-weight: 400;
    text-shadow: 0 1px 8px rgba(0,0,0,0.6);
    pointer-events: none;
}

.about-copy {
    padding-top: 2rem;
}

.about-eyebrow {
    font-size: 0.69rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-mute);
    font-weight: 400;
    margin-bottom: 2rem;
}

.about-headline {
    font-family: var(--sans);
    font-weight: 200;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--ink-cream);
    margin-bottom: 3rem;
}

.about-text {
    display: grid;
    gap: 1.4rem;
    margin-bottom: 4rem;
    max-width: 36rem;
}
.about-text-mobile { display: none; }

.about-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.005em;
    color: rgba(209, 200, 179, 0.88);
}

.about-foot {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--line);
}

.about-pull {
    font-size: 0.625rem;
    letter-spacing: 0.04em;
    line-height: 1.7;
    color: var(--ink-mute);
    max-width: 28rem;
    font-weight: 400;
}

/* ============================== Work ============================== */

.work {
    background: var(--bg-noir);
    padding: 6rem 2rem 8rem;
    overflow: hidden;
}

.work-eyebrow {
    font-size: 0.69rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-mute);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.work-title {
    font-family: var(--sans);
    font-weight: 200;
    font-size: clamp(3.5rem, 9vw, 7.2rem);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--ink-cream);
    margin-bottom: 5rem;
}

.work-feature {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.work-feature-media {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--bg-deep);
}
.work-stage {
    position: absolute;
    inset: 0;
}
.work-stage-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s var(--ease);
    will-change: opacity;
}
.work-stage-slide.is-active {
    opacity: 1;
}
.work-stage-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.4s var(--ease), filter 0.9s var(--ease);
    will-change: transform;
}
.work-feature-media:hover .work-stage-slide.is-active .work-stage-img {
    transform: scale(1.025);
    filter: brightness(1.05);
}

.work-feature-info { padding-left: 1rem; }

.work-feature-num {
    font-size: 0.69rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-mute);
    display: block;
    margin-bottom: 1.5rem;
    font-weight: 400;
    transition: color 0.5s var(--ease);
}

.work-feature-name {
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--ink-cream);
    margin-bottom: 1.25rem;
    transition: opacity 0.4s var(--ease);
}

.work-feature-cat {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(209, 200, 179, 0.7);
    margin-bottom: 3rem;
    font-weight: 400;
    transition: opacity 0.4s var(--ease);
}

.work-feature-pager {
    display: flex;
    gap: 0.6rem;
}
.work-dot {
    width: 1.75rem;
    height: 6px;
    padding: 0;
    background: rgba(209, 200, 179, 0.2);
    display: block;
    cursor: pointer;
    transition: background 0.5s var(--ease), width 0.6s var(--ease);
    border-radius: 0;
}
.work-dot:hover { background: rgba(209, 200, 179, 0.55); }
.work-dot.is-active {
    background: var(--ink-cream);
    width: 2.75rem;
}

.work-list { border-top: 1px solid var(--line); }

.work-list-row {
    position: relative;
    display: grid;
    grid-template-columns: 4rem 1fr auto;
    align-items: center;
    gap: 3rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--line);
    cursor: pointer;
    transition: padding 0.6s var(--ease);
    overflow: hidden;
}
.work-list-row .work-list-rule {
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 1px;
    background: var(--ink-cream);
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.9s var(--ease);
}
.work-list-row:hover .work-list-rule,
.work-list-row.is-active .work-list-rule { transform: scaleX(1); }
.work-list-row:hover { padding-left: 1rem; }

.work-list-num {
    font-size: 0.625rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-mute);
    font-weight: 400;
    transition: color 0.5s var(--ease);
}
.work-list-row:hover .work-list-num,
.work-list-row.is-active .work-list-num { color: var(--ink-cream); }

.work-list-name {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 300;
    color: var(--ink-cream);
    letter-spacing: -0.005em;
    transition: transform 0.7s var(--ease), letter-spacing 0.5s var(--ease);
}
.work-list-row:hover .work-list-name { letter-spacing: 0.01em; }

.work-list-cat {
    font-size: 0.625rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-mute);
    font-weight: 400;
    transition: color 0.5s var(--ease);
}
.work-list-row:hover .work-list-cat,
.work-list-row.is-active .work-list-cat { color: rgba(209, 200, 179, 0.78); }

.work-foot {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 4rem;
    padding-top: 4rem;
}

.work-pull {
    font-size: 0.69rem;
    letter-spacing: 0.04em;
    line-height: 1.75;
    color: var(--ink-mute);
    max-width: 38rem;
    font-weight: 400;
}

.work-cta {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.72rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink-cream);
    padding: 1.1rem 2.5rem;
    border: 1px solid var(--ink-faint);
    white-space: nowrap;
    transition: background 0.5s var(--ease), color 0.5s var(--ease), border-color 0.5s var(--ease), letter-spacing 0.5s var(--ease);
    font-weight: 400;
}
.work-cta-arrow {
    display: inline-block;
    transition: transform 0.6s var(--ease);
}
.work-cta:hover {
    background: var(--ink-cream);
    color: var(--bg-noir);
    border-color: var(--ink-cream);
    letter-spacing: 0.36em;
}
.work-cta:hover .work-cta-arrow { transform: translateX(0.4rem); }

/* ============================== Footer ============================== */

.footer {
    background: var(--bg-noir);
    color: var(--ink-cream);
    padding: 5rem 2rem 2rem;
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand h4 {
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 0.32em;
    margin-bottom: 1rem;
}
.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.65;
    color: rgba(209, 200, 179, 0.65);
    max-width: 28rem;
    font-weight: 300;
}

.footer-label {
    font-size: 0.625rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul li,
.footer-col ul li a {
    font-size: 0.875rem;
    color: rgba(209, 200, 179, 0.7);
    font-weight: 300;
}
.footer-col ul li a {
    position: relative;
    transition: color 0.5s var(--ease);
    display: inline-block;
}
.footer-col ul li a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -0.2rem;
    height: 1px;
    width: 0;
    background: var(--ink-cream);
    transition: width 0.6s var(--ease);
}
.footer-col ul li a:hover { color: var(--ink-cream); }
.footer-col ul li a:hover::after { width: 100%; }

.footer-base {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    color: var(--ink-mute);
    font-weight: 400;
}

/* ============================== Reveal Animations ============================== */

.fade-in {
    opacity: 0;
    transform: translateY(2rem);
    transition: opacity 1s var(--ease), transform 1.2s var(--ease);
}
.fade-in.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================== Responsive ============================== */

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-copy { padding-top: 0; }

    .work-feature {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .work-feature-info { padding-left: 0; }

    .menu-body {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .nav { padding: 1.2rem 1.25rem; }

    .hero-grid {
        grid-template-columns: 1fr;
        align-content: end;
        padding: 0 1.25rem 9rem;
        gap: 1.5rem;
    }
    .hero-col-center { display: none; }
    .hero-wordmark {
        bottom: 3rem;
        font-size: 22vw;
    }

    .services { padding: 4rem 0 5rem; }
    .services-imgs { display: none; }

    .services-title {
        padding: 0 1.25rem;
        margin: 0 0 3.5rem;
    }
    .service-row {
        grid-template-columns: 1.5rem 1fr;
        gap: 1rem;
        padding: 1.5rem 1.25rem;
    }
    .service-num-right { display: none; }
    .service-name { grid-column: 2; }
    .service-desc {
        grid-column: 2;
        margin-left: 0;
        max-width: none;
    }

    .about { padding: 4rem 0 5rem; }
    .about-grid {
        padding: 0 1.25rem;
        gap: 2.5rem;
    }
    .about-portrait { aspect-ratio: 4 / 5; }
    .about-headline { margin-bottom: 2rem; }
    .about-text { gap: 1.25rem; margin-bottom: 2.5rem; }
    .about-text p { font-size: 0.95rem; }
    .about-text-desktop { display: none; }
    .about-text-mobile { display: grid; }
    .about-foot {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding-top: 2rem;
    }

    .work { padding: 4rem 1.25rem 5rem; }
    .work-title { margin-bottom: 3rem; }

    .work-feature { margin-bottom: 4rem; }
    .work-feature-media { aspect-ratio: 2 / 3; }
    .work-stage-img { object-fit: cover; }
    .work-feature-name { margin-bottom: 0.8rem; }
    .work-feature-cat { margin-bottom: 2rem; }

    .work-list-row {
        grid-template-columns: 3rem 1fr;
        gap: 1rem;
        padding: 1.25rem 0;
    }
    .work-list-cat {
        grid-column: 2;
        grid-row: 2;
        padding-top: 0.2rem;
    }
    .work-list-name { font-size: 1.5rem; }

    .work-foot {
        flex-direction: column;
        align-items: stretch;
        gap: 2rem;
        padding-top: 3rem;
    }
    .work-cta {
        justify-content: space-between;
        padding: 1.1rem 1.5rem;
    }

    .footer { padding: 4rem 1.25rem 2rem; }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 3rem;
    }
    .footer-base {
        flex-direction: column;
        gap: 0.8rem;
    }

    .menu-inner { padding: 1.2rem 1.25rem 1.5rem; }
    .menu-body { padding: 1.5rem 0; gap: 2.5rem; }
    .menu-list li a {
        grid-template-columns: 2rem 1fr;
        gap: 1rem;
        font-size: 1.75rem;
        padding: 0.9rem 0;
    }
    .menu-list li a:hover { padding-left: 0.4rem; }
    .menu-foot {
        flex-direction: column;
        gap: 0.4rem;
    }
}

@media (max-width: 420px) {
    .hero-col-left p { font-size: 0.58rem; }
    .services-title { font-size: 2.6rem; }
    .work-title { font-size: 2.6rem; }
    .about-headline { font-size: 2.2rem; }
}

/* ============================== Inquiry Modal ============================== */

.inquiry-overlay {
    position: fixed;
    inset: 0;
    z-index: 300;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}
.inquiry-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.inquiry-veil {
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 8, 0.78);
    backdrop-filter: blur(22px) saturate(120%);
    -webkit-backdrop-filter: blur(22px) saturate(120%);
}
.inquiry-panel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 24px));
    width: min(640px, calc(100% - 3rem));
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
    background: #0e0e0e;
    border: 1px solid var(--line);
    color: var(--ink-cream);
    transition: transform 0.8s var(--ease), opacity 0.6s var(--ease);
    opacity: 0;
}
.inquiry-overlay.is-open .inquiry-panel {
    transform: translate(-50%, -50%);
    opacity: 1;
}

.inquiry-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--line);
}
.inquiry-mark {
    font-size: 0.78rem;
    letter-spacing: 0.4em;
    color: var(--ink-cream);
    font-weight: 400;
}
.inquiry-close {
    background: none;
    border: none;
    color: var(--ink-cream);
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    cursor: pointer;
    padding: 0.4rem 0;
    font-weight: 400;
    transition: letter-spacing 0.5s var(--ease), opacity 0.4s var(--ease);
    opacity: 0.75;
}
.inquiry-close:hover {
    letter-spacing: 0.45em;
    opacity: 1;
}

.inquiry-body {
    padding: 2.5rem 2rem 2.25rem;
}

.inquiry-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-mute);
    font-weight: 400;
    margin-bottom: 1rem;
}
.inquiry-title {
    font-family: var(--sans);
    font-weight: 200;
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--ink-cream);
    margin-bottom: 1rem;
}
.inquiry-intro {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(209, 200, 179, 0.72);
    max-width: 32rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.inquiry-form { display: grid; gap: 1.5rem; }
.inquiry-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.inquiry-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.inquiry-field > span {
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-mute);
    font-weight: 400;
}
.inquiry-field input,
.inquiry-field select,
.inquiry-field textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line);
    color: var(--ink-cream);
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 300;
    padding: 0.55rem 0;
    width: 100%;
    outline: none;
    transition: border-color 0.4s var(--ease);
}
.inquiry-field textarea {
    resize: vertical;
    min-height: 4.5rem;
    line-height: 1.55;
}
.inquiry-field input::placeholder,
.inquiry-field textarea::placeholder {
    color: rgba(209, 200, 179, 0.32);
}
.inquiry-field input:focus,
.inquiry-field select:focus,
.inquiry-field textarea:focus {
    border-color: var(--ink-cream);
}
.inquiry-field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%23d1c8b3' stroke-width='1'/></svg>");
    background-repeat: no-repeat;
    background-position: right 0.3rem center;
    background-size: 10px;
    padding-right: 1.5rem;
    cursor: pointer;
}
.inquiry-field select option {
    background: #0e0e0e;
    color: var(--ink-cream);
}

.inquiry-submit {
    margin-top: 1rem;
    background: var(--ink-cream);
    color: var(--bg-noir);
    border: 1px solid var(--ink-cream);
    padding: 1.1rem 1.5rem;
    font-family: var(--sans);
    font-size: 0.72rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-weight: 400;
    transition: background 0.5s var(--ease), color 0.5s var(--ease), letter-spacing 0.5s var(--ease);
}
.inquiry-submit-arrow {
    display: inline-block;
    transition: transform 0.5s var(--ease);
}
.inquiry-submit:hover {
    background: transparent;
    color: var(--ink-cream);
    letter-spacing: 0.4em;
}
.inquiry-submit:hover .inquiry-submit-arrow {
    transform: translateX(6px);
}

.inquiry-footnote {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-mute);
    text-align: center;
    margin-top: 0.5rem;
    font-weight: 400;
}

@media (max-width: 640px) {
    .inquiry-panel {
        width: calc(100% - 1.5rem);
        max-height: calc(100vh - 2rem);
    }
    .inquiry-head { padding: 1.1rem 1.25rem; }
    .inquiry-body { padding: 1.75rem 1.25rem 1.5rem; }
    .inquiry-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

body.inquiry-open { overflow: hidden; }
