/* ============================================
   DREVIXTECH — SHARED STYLES
   ============================================ */

:root {
    --navy-primary: #0a1628;
    --navy-deep: #050b18;
    --navy-soft: #142844;
    --navy-line: #1c2f4d;
    --ivory: #f5efe6;
    --ivory-dim: rgba(245, 239, 230, 0.72);
    --ivory-faint: rgba(245, 239, 230, 0.42);
    --ivory-ghost: rgba(245, 239, 230, 0.12);
    --gold: #c9a86a;
    --gold-bright: #e6c789;
    --gold-faint: rgba(201, 168, 106, 0.22);
    --gold-soft: rgba(201, 168, 106, 0.5);

    --serif: 'Fraunces', 'Times New Roman', serif;
    --mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

    --max-width: 1280px;
    --max-narrow: 960px;
    --gutter: 32px;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    background: var(--navy-primary);
}

body {
    background: var(--navy-primary);
    color: var(--ivory);
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.5;
    overflow-x: hidden;
    cursor: none;
    font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
    text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; cursor: none; }
button { background: none; border: none; color: inherit; font-family: inherit; cursor: none; }
input, textarea, select { font-family: inherit; cursor: none; }
img { display: block; max-width: 100%; }

::selection {
    background: var(--gold);
    color: var(--navy-deep);
}

/* FOCUS STATES (accessibility) */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
    border-radius: 1px;
}
*:focus:not(:focus-visible) { outline: none; }

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .marquee-track { animation: none !important; }
    .hero-scroll::after { animation: none !important; }
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */

.cursor-dot,
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    will-change: transform;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--ivory);
    border-radius: 50%;
    margin: -3px 0 0 -3px;
    transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out), margin 0.25s var(--ease-out);
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1px solid var(--ivory);
    border-radius: 50%;
    margin: -18px 0 0 -18px;
    transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), margin 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.cursor-active .cursor-dot {
    width: 0;
    height: 0;
    margin: 0;
}

.cursor-active .cursor-ring {
    width: 56px;
    height: 56px;
    margin: -28px 0 0 -28px;
    border-color: var(--gold);
}

@media (max-width: 900px), (hover: none) {
    .cursor-dot, .cursor-ring { display: none; }
    body, a, button, input, textarea, select { cursor: auto; }
    a, button, [data-hover] { cursor: pointer; }
}

/* ============================================
   GRAIN OVERLAY
   ============================================ */

.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.04;
    mix-blend-mode: overlay;
    z-index: 9999;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ============================================
   LOADER
   ============================================ */

.loader {
    position: fixed;
    inset: 0;
    background: var(--navy-deep);
    z-index: 11000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out), visibility 0.6s var(--ease-out);
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader.instant {
    opacity: 0;
    visibility: hidden;
    transition: none;
}

.loader-mark {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
}

.loader-mark .hex {
    stroke: var(--gold);
    stroke-width: 1.5;
    fill: none;
    stroke-linejoin: round;
    stroke-dasharray: 80;
    stroke-dashoffset: 80;
    animation: draw 1.1s var(--ease-out) forwards;
}

.loader-mark .axis {
    stroke: var(--gold);
    stroke-width: 1;
    stroke-linecap: round;
    opacity: 0.6;
    stroke-dasharray: 16;
    stroke-dashoffset: 16;
    animation: draw 0.5s 0.6s var(--ease-out) forwards;
}

.loader-mark .dot {
    fill: var(--gold);
    opacity: 0;
    animation: dotFade 0.4s 1s var(--ease-out) forwards;
}

@keyframes draw {
    to { stroke-dashoffset: 0; }
}

@keyframes dotFade {
    to { opacity: 1; }
}

.loader-text {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ivory-dim);
    opacity: 0;
    animation: fadeIn 0.6s 0.7s var(--ease-out) forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 24px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding 0.4s var(--ease-out), background 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
    border-bottom: 1px solid transparent;
    background: rgba(10, 22, 40, 0);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
}

.nav.scrolled {
    padding: 14px 48px;
    background: rgba(10, 22, 40, 0.78);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-bottom: 1px solid var(--ivory-ghost);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.nav-brand svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ivory-dim);
    position: relative;
    padding: 4px 0;
    transition: color 0.3s var(--ease-out);
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
    color: var(--ivory);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    position: relative;
    overflow: hidden;
    padding: 10px 22px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: color 0.4s var(--ease-out);
}

.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateY(101%);
    transition: transform 0.5s var(--ease-out);
    z-index: -1;
}

.nav-cta:hover {
    color: var(--navy-deep);
}

.nav-cta:hover::before {
    transform: translateY(0);
}

.nav-toggle {
    display: none;
    width: 28px;
    height: 18px;
    position: relative;
}

.nav-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--ivory);
    transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}

.nav-toggle span:nth-child(1) { top: 4px; }
.nav-toggle span:nth-child(2) { top: 50%; }
.nav-toggle span:nth-child(3) { bottom: 4px; }

.nav-toggle.open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 900px) {
    .nav { padding: 18px 24px; }
    .nav.scrolled { padding: 12px 24px; }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 360px;
        background: var(--navy-deep);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 80px 32px;
        gap: 28px;
        transform: translateX(100%);
        transition: transform 0.5s var(--ease-out);
        border-left: 1px solid var(--ivory-ghost);
    }

    .nav-links.open { transform: translateX(0); }
    .nav-link { font-size: 14px; }
    .nav-cta { width: 100%; text-align: center; padding: 14px 22px; }
    .nav-toggle { display: block; z-index: 110; }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out), color 0.4s var(--ease-out);
    will-change: transform;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-deep);
    border: 1px solid var(--gold);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-bright);
    transform: translateY(101%);
    transition: transform 0.5s var(--ease-out);
}

.btn-primary:hover::before { transform: translateY(0); }
.btn-primary span { position: relative; z-index: 1; }

.btn-secondary {
    background: transparent;
    color: var(--ivory);
    border: 1px solid var(--ivory-ghost);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--ivory);
    transform: translateY(101%);
    transition: transform 0.5s var(--ease-out);
}

.btn-secondary:hover { color: var(--navy-deep); border-color: var(--ivory); }
.btn-secondary:hover::before { transform: translateY(0); }
.btn-secondary span { position: relative; z-index: 1; }

.btn-arrow {
    display: inline-block;
    transition: transform 0.4s var(--ease-out);
    position: relative;
    z-index: 1;
}

.btn:hover .btn-arrow { transform: translateX(4px); }

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--navy-deep);
    border-top: 1px solid var(--ivory-ghost);
    padding: 96px 48px 32px;
    margin-top: 0;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 56px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--ivory-ghost);
}

.footer-brand-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 320px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-brand svg { width: 30px; height: 30px; }

.footer-brand-name {
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-brand-tag {
    font-family: var(--serif);
    font-size: 15px;
    color: var(--ivory-dim);
    line-height: 1.6;
}

.footer-col h4 {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
    font-size: 14px;
    color: var(--ivory-dim);
    transition: color 0.3s var(--ease-out);
    display: inline-block;
}
.footer-col a:hover { color: var(--ivory); }

.footer-contact {
    font-size: 14px;
    color: var(--ivory-dim);
    line-height: 1.7;
}

.footer-contact a { color: var(--ivory); display: block; margin-top: 8px; }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    color: var(--ivory-faint);
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .footer { padding: 64px 24px 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; padding-bottom: 56px; }
    .footer-brand-block { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal-stagger] > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-reveal-stagger].revealed > * { opacity: 1; transform: translateY(0); }

[data-reveal-stagger].revealed > *:nth-child(1) { transition-delay: 0s; }
[data-reveal-stagger].revealed > *:nth-child(2) { transition-delay: 0.08s; }
[data-reveal-stagger].revealed > *:nth-child(3) { transition-delay: 0.16s; }
[data-reveal-stagger].revealed > *:nth-child(4) { transition-delay: 0.24s; }
[data-reveal-stagger].revealed > *:nth-child(5) { transition-delay: 0.32s; }
[data-reveal-stagger].revealed > *:nth-child(6) { transition-delay: 0.4s; }
[data-reveal-stagger].revealed > *:nth-child(7) { transition-delay: 0.48s; }
[data-reveal-stagger].revealed > *:nth-child(8) { transition-delay: 0.56s; }
[data-reveal-stagger].revealed > *:nth-child(9) { transition-delay: 0.64s; }
[data-reveal-stagger].revealed > *:nth-child(10) { transition-delay: 0.72s; }

/* MASK REVEAL — clip-path wipe for headlines */
[data-mask-reveal] {
    clip-path: inset(0 100% -10% 0);
    transition: clip-path 1.4s var(--ease-out) 0.1s;
    will-change: clip-path;
}

[data-mask-reveal].revealed {
    clip-path: inset(0 0 -10% 0);
}

/* SPOTLIGHT (cards) */
.spotlight {
    position: relative;
}

.spotlight::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        320px circle at var(--spot-x, 50%) var(--spot-y, 50%),
        rgba(201, 168, 106, 0.08),
        transparent 45%
    );
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
    pointer-events: none;
    z-index: 0;
}

.spotlight:hover::after { opacity: 1; }
.spotlight > * { position: relative; z-index: 1; }

/* ============================================
   COMMON SECTION / TYPOGRAPHY UTILITIES
   ============================================ */

.section { padding: 140px 48px; position: relative; }
.section-narrow { padding: 120px 48px; }

.container { max-width: var(--max-width); margin: 0 auto; position: relative; }
.container-narrow { max-width: var(--max-narrow); margin: 0 auto; position: relative; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
}

.eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold); }

.h-display {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(48px, 7vw, 96px);
    line-height: 1.02;
    letter-spacing: -0.02em;
}

.h-section {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.015em;
}

.h-card {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.italic-em { font-style: italic; font-weight: 300; color: var(--gold); }

.lead {
    font-size: 19px;
    line-height: 1.65;
    color: var(--ivory-dim);
    max-width: 620px;
    font-weight: 400;
}

.body-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--ivory-dim);
}

.rule { height: 1px; background: var(--ivory-ghost); border: none; }

.gold-rule {
    height: 1px;
    width: 80px;
    background: var(--gold);
    border: none;
    margin-bottom: 32px;
}

@media (max-width: 900px) {
    .section, .section-narrow { padding: 80px 24px; }
}

/* ============================================
   PAGE HEADER (used on non-home pages)
   ============================================ */

.page-header {
    padding: 200px 48px 100px;
    border-bottom: 1px solid var(--ivory-ghost);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, var(--gold-faint), transparent 60%);
    opacity: 0.4;
    pointer-events: none;
}

.page-header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
}

.page-header-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
}

@media (max-width: 900px) {
    .page-header { padding: 140px 24px 64px; }
    .page-header-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================
   TESTIMONIAL PULL
   ============================================ */

.pull {
    padding: 110px 48px;
    background: var(--navy-deep);
    border-top: 1px solid var(--ivory-ghost);
    border-bottom: 1px solid var(--ivory-ghost);
    position: relative;
    overflow: hidden;
}

.pull::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at right top, var(--gold-faint), transparent 60%);
    opacity: 0.25;
    pointer-events: none;
}

.pull-inner {
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: start;
    position: relative;
}

.pull-mark {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: 120px;
    line-height: 0.6;
    color: var(--gold);
    user-select: none;
    flex-shrink: 0;
}

.pull-quote {
    font-family: var(--serif);
    font-weight: 400;
    font-style: italic;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.35;
    color: var(--ivory);
    letter-spacing: -0.01em;
    margin-bottom: 32px;
    max-width: 920px;
}

.pull-quote em { color: var(--gold); font-style: italic; font-weight: 300; }

.pull-attr {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ivory-dim);
}

.pull-attr::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--gold);
}

@media (max-width: 900px) {
    .pull { padding: 64px 24px; }
    .pull-inner { grid-template-columns: 1fr; gap: 24px; }
    .pull-mark { font-size: 80px; }
}

/* ============================================
   CUSTOM BUILDS LIST
   ============================================ */

.builds {
    padding: 160px 48px;
    background: var(--navy-deep);
    border-top: 1px solid var(--ivory-ghost);
    position: relative;
    overflow: hidden;
}

.builds-head {
    max-width: var(--max-width);
    margin: 0 auto 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
}

.builds-list {
    max-width: var(--max-width);
    margin: 0 auto;
    border-top: 1px solid var(--ivory-ghost);
}

.build-row {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 64px;
    padding: 28px 0;
    border-bottom: 1px solid var(--ivory-ghost);
    transition: padding 0.5s var(--ease-out), background 0.5s var(--ease-out);
    align-items: baseline;
    position: relative;
}

.build-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--gold);
    transition: width 0.5s var(--ease-out);
}

.build-row:hover {
    padding-left: 24px;
    padding-right: 24px;
    background: rgba(201, 168, 106, 0.025);
}

.build-row:hover::before {
    width: 2px;
}

.build-name {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.build-num {
    font-size: 11px;
    color: var(--ivory-faint);
    letter-spacing: 0.22em;
    flex-shrink: 0;
}

.build-desc {
    font-family: var(--serif);
    font-size: 18px;
    line-height: 1.55;
    color: var(--ivory);
}

.build-desc em {
    font-style: italic;
    font-weight: 300;
    color: var(--gold);
}

.builds-footer {
    max-width: 720px;
    margin: 80px auto 0;
    text-align: center;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: 22px;
    line-height: 1.5;
    color: var(--ivory-dim);
}

.builds-footer em { color: var(--gold-bright); font-style: italic; }

@media (max-width: 900px) {
    .builds { padding: 80px 24px; }
    .builds-head { grid-template-columns: 1fr; gap: 32px; margin-bottom: 56px; }
    .build-row { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
    .build-row:hover { padding-left: 0; padding-right: 0; }
    .build-name { font-size: 11px; }
    .build-desc { font-size: 16px; }
    .builds-footer { font-size: 18px; margin-top: 56px; }
}

/* ============================================
   STUDIO / PHILOSOPHY SECTION
   ============================================ */

.studio {
    padding: 160px 48px;
    background: var(--navy-primary);
    position: relative;
    overflow: hidden;
}

.studio::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at left bottom, var(--gold-faint), transparent 55%);
    opacity: 0.3;
    pointer-events: none;
}

.studio-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
}

.studio-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 100px;
    align-items: start;
}

.studio-text h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
    max-width: 720px;
}

.studio-text h2 em {
    font-style: italic;
    font-weight: 300;
    color: var(--gold);
}

.studio-text p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--ivory-dim);
    margin-bottom: 24px;
    max-width: 620px;
}

.studio-text p em {
    font-style: italic;
    font-weight: 300;
    color: var(--gold);
}

.studio-list {
    padding: 40px;
    border: 1px solid var(--gold-soft);
    background: rgba(201, 168, 106, 0.02);
    position: sticky;
    top: 120px;
}

.studio-list h3 {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--gold-soft);
    display: flex;
    align-items: center;
    gap: 12px;
}

.studio-list h3 .dot {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.studio-list ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.studio-list ul li {
    font-size: 15px;
    line-height: 1.55;
    color: var(--ivory);
    padding-left: 26px;
    position: relative;
}

.studio-list ul li::before {
    content: '×';
    position: absolute;
    left: 0; top: -4px;
    color: var(--gold);
    font-style: italic;
    font-family: var(--serif);
    font-size: 22px;
    line-height: 1.4;
    font-weight: 300;
}

@media (max-width: 900px) {
    .studio { padding: 80px 24px; }
    .studio-grid { grid-template-columns: 1fr; gap: 48px; }
    .studio-list { padding: 28px; position: static; }
}

/* ============================================
   IN-CASE QUOTE (for work.html)
   ============================================ */

.case-quote {
    margin-top: 80px;
    padding: 40px 48px;
    border-left: 2px solid var(--gold);
    background: rgba(201, 168, 106, 0.025);
    max-width: 880px;
}

.case-quote p {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: 22px;
    line-height: 1.45;
    color: var(--ivory);
    margin-bottom: 20px;
    letter-spacing: -0.005em;
}

.case-quote p em { color: var(--gold-bright); font-style: italic; }

.case-quote cite {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ivory-dim);
    font-style: normal;
    display: flex;
    align-items: center;
    gap: 14px;
}

.case-quote cite::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--gold);
}

@media (max-width: 900px) {
    .case-quote { padding: 28px 24px; margin-top: 48px; }
    .case-quote p { font-size: 18px; }
}
