/* ======================================================
   ZAHA — Shared Stylesheet (zaha.archandpave.com)
   Premium Light White & Gold Gradient Theme
   ====================================================== */

@property --angle {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}

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

html {
    scroll-behavior: auto;
}

body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at top right, #ffffff 0%, #fdfbf7 50%, #faf7f2 100%);
    color: #1a1a1a;
    overflow-x: hidden;
    min-height: 100vh;
}

::selection {
    background: #d4af37;
    color: #fff;
}

@media(prefers-reduced-motion:reduce) {
    * {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}

/* ===== TOKENS & GRADIENTS ===== */
.g {
    background: linear-gradient(110deg, #7a5e10 0%, #c9a227 20%, #f9e08c 45%, #d4af37 65%, #7a5e10 100%);
    background-size: 260% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.g-shimmer {
    animation: gShimmer 5s linear infinite;
}

@keyframes gShimmer {
    to {
        background-position: -260% 0;
    }
}

/* ===== BACKGROUND PARTICLE CANVAS ===== */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: radial-gradient(circle, #ffffff, #faf7f2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: opacity .9s ease, visibility .9s ease;
}

body.loaded #preloader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.pl-logo {
    font-size: 18px;
    letter-spacing: 10px;
    font-weight: 900;
    color: #d4af37;
    text-transform: uppercase;
}

.pl-count {
    font-size: clamp(80px, 14vw, 180px);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(110deg, #7a5e10, #d4af37, #f9e08c, #d4af37, #7a5e10);
    background-size: 260% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gShimmer 3s linear infinite;
}

.pl-tag {
    font-size: 11px;
    letter-spacing: 5px;
    color: #8b6c16;
    text-transform: uppercase;
}

.pl-bar {
    width: 180px;
    height: 1px;
    background: #eee;
    position: relative;
    overflow: hidden;
}

.pl-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #d4af37, #f9e08c);
}

/* ===== GRAIN ===== */
.grain {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: .018;
    mix-blend-mode: multiply;
    will-change: transform;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== CURSOR ===== */
.c-dot,
.c-ring {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99997;
    transform: translate(-50%, -50%);
    will-change: transform;
}

.c-dot {
    width: 6px;
    height: 6px;
    background: #c9a227;
}

.c-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(212, 175, 55, .6);
    transition: width .22s, height .22s, border-color .22s, background-color .22s;
}

.c-ring.big {
    width: 70px;
    height: 70px;
    border-color: #c9a227;
    background: rgba(212, 175, 55, .12);
}

body.cursor-on *,
body.cursor-on a,
body.cursor-on button {
    cursor: none !important;
}

/* ===== SCROLL THREAD ===== */
.s-thread {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    z-index: 9000;
}

.s-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #7a5e10, #d4af37, #f9e08c);
}

/* ===== NAV ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 52px;
    transition: background .4s ease, backdrop-filter .4s ease;
}

nav.solid {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.nav-logo {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 6px;
    text-transform: uppercase;
    text-decoration: none;
    background: linear-gradient(110deg, #7a5e10, #d4af37, #f9e08c, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-r {
    display: flex;
    align-items: center;
    gap: 24px;
}

.lang {
    font-size: 12px;
    letter-spacing: 2px;
    color: #666;
    font-weight: 700;
}

.lang b {
    color: #8b6c16;
}

.menu-btn {
    padding: 14px 24px;
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: box-shadow .3s, border-color .3s;
}

.menu-btn:hover {
    box-shadow: 0 0 22px rgba(212, 175, 55, .25);
    border-color: #d4af37;
}

.menu-btn .lines {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.menu-btn .lines span {
    display: block;
    width: 16px;
    height: 2px;
    background: #d4af37;
    transition: transform .3s, opacity .3s;
}

.menu-btn.open .lines span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.menu-btn.open .lines span:nth-child(2) {
    opacity: 0;
}

.menu-btn.open .lines span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

.menu-btn .txt {
    color: #d4af37;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
}

/* ===== FULLSCREEN MENU ===== */
.overlay {
    position: fixed;
    inset: 0;
    z-index: 1900;
    background: radial-gradient(ellipse at 68% 44%, rgba(212, 175, 55, .15), transparent 60%), rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    transform: translateY(-100%);
    transition: transform .75s cubic-bezier(.77, 0, .18, 1);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8vw;
}

.overlay.open {
    transform: translateY(0);
    pointer-events: all;
}

.ov-links {
    display: flex;
    flex-direction: column;
}

.ov-link {
    display: block;
    text-decoration: none;
    line-height: 1;
    margin: 8px 0;
    width: fit-content;
    transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), opacity .3s;
    position: relative;
}

.ov-link.italic-link {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: clamp(44px, 6vw, 82px);
    font-weight: 400;
    background: linear-gradient(110deg, #d4af37, #f9e08c, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ov-link.bold-link {
    font-size: clamp(38px, 5.5vw, 74px);
    font-weight: 900;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: #1a1a1a;
}

.ov-link.bold-link:hover,
.ov-link.bold-link.hi {
    color: #8b6c16;
    transform: translateX(20px);
}

.ov-link.italic-link.hi {
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, .4));
    transform: translateX(20px);
}

.ov-link.dim {
    opacity: .25;
}

.ov-char {
    width: clamp(200px, 28vw, 420px);
    height: clamp(220px, 34vw, 480px);
    position: relative;
    flex-shrink: 0;
}

.char-wrap {
    position: absolute;
    inset: 0;
    transition: transform .65s cubic-bezier(.34, 1.56, .64, 1);
}

/* ===== BOLT BITS (menu character shapes) ===== */
.bolt-bit {
    position: absolute;
    border-radius: 3px;
    background: linear-gradient(135deg, rgba(212,175,55,.9), rgba(249,224,140,.7));
    transition: all .4s cubic-bezier(.34,1.56,.64,1);
}

.ov-close {
    position: absolute;
    top: 28px;
    right: 52px;
    font-size: 26px;
    color: #d4af37;
    cursor: pointer;
    z-index: 10;
}

.ov-foot {
    position: absolute;
    bottom: 48px;
    left: 8vw;
    display: flex;
    gap: 32px;
}

.ov-foot a {
    color: #888;
    font-size: 11px;
    letter-spacing: 2px;
    text-decoration: none;
    font-weight: 700;
    transition: color .25s;
}

.ov-foot a:hover {
    color: #8b6c16;
}

/* ===== SOCIAL RAIL ===== */
.social-rail {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1500;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.social-rail a {
    color: #888;
    font-size: 14px;
    transition: .3s;
}

.social-rail a:hover {
    color: #d4af37;
    transform: scale(1.25);
}

.s-scroll-txt {
    writing-mode: vertical-rl;
    font-size: 10px;
    letter-spacing: 3px;
    color: #888;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 10px;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 60px;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: blobDrift 14s ease-in-out infinite alternate;
}

.hero-glow.a {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(212, 175, 55, .18), transparent 70%);
    top: -100px;
    right: 5%;
    animation-duration: 12s;
}

.hero-glow.b {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(212, 175, 55, .1), transparent 70%);
    bottom: -60px;
    left: 8%;
    animation-duration: 18s;
    animation-delay: -6s;
}

@keyframes blobDrift {
    to {
        transform: translate(30px, 20px) scale(1.1);
    }
}

.hero-pts {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.pt {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #d4af37;
    box-shadow: 0 0 6px rgba(212, 175, 55, .9);
    animation: ptRise linear infinite;
}

@keyframes ptRise {
    0% { opacity: 0; transform: translateY(0) scale(0); }
    15% { opacity: 1; }
    85% { opacity: .6; }
    100% { opacity: 0; transform: translateY(-140px) scale(1.5) translateX(20px); }
}

.hero-head {
    position: relative;
    z-index: 5;
    padding: 0 52px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

.hero-h1 {
    font-size: clamp(52px, 8.5vw, 120px);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -3px;
    max-width: 820px;
}

.hero-h1 .row {
    display: block;
    overflow: hidden;
}

.hero-h1 .row-inner {
    display: block;
    transform: translateY(115%);
    transition: transform 1.1s cubic-bezier(.16, 1, .3, 1);
}

.hero.reveal .row-inner {
    transform: translateY(0);
}

.hero.reveal .hero-h1 .row:nth-child(2) .row-inner { transition-delay: .12s; }
.hero.reveal .hero-h1 .row:nth-child(3) .row-inner { transition-delay: .22s; }

.hero-italic {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 400;
}

.hero-tags {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-self: flex-start;
    padding-top: 12px;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .7s ease .9s, transform .7s ease .9s;
}

.hero.reveal .hero-tags {
    opacity: 1;
    transform: translateY(0);
}

.hero-tags span {
    font-size: 12px;
    color: #666;
    letter-spacing: 1px;
    font-weight: 500;
}

.hero-meta-bar {
    position: relative;
    z-index: 5;
    margin-top: 70px;
    padding: 0 52px;
    display: flex;
    gap: 70px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .8s ease 1.05s, transform .8s ease 1.05s;
}

.hero.reveal .hero-meta-bar {
    opacity: 1;
    transform: translateY(0);
}

.hero-meta-item p:first-child {
    font-size: 10px;
    letter-spacing: 3px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.hero-meta-item p:last-child {
    font-size: 14px;
    font-weight: 700;
    color: #222;
}

.voxel-wrap {
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-52%);
    width: clamp(280px, 30vw, 480px);
    z-index: 4;
    transform-style: preserve-3d;
}

.voxel-wrap svg {
    width: 100%;
    height: auto;
    overflow: visible;
    filter: drop-shadow(0 25px 35px rgba(212, 175, 55, 0.12));
}

.scroll-cue {
    position: absolute;
    bottom: 38px;
    left: 52px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity .6s ease 1.3s;
}

.hero.reveal .scroll-cue {
    opacity: 1;
}

.sc-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(#d4af37, transparent);
    animation: scLine 2.2s ease-in-out infinite;
}

@keyframes scLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== MARQUEE ===== */
.marquee-wrap {
    overflow: hidden;
    padding: 28px 0;
    border-top: 1px solid rgba(212, 175, 55, .22);
    border-bottom: 1px solid rgba(212, 175, 55, .22);
    background: #fdfbf7;
}

.marquee-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: marqueeRun 22s linear infinite;
}

.marquee-track span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #666;
    white-space: nowrap;
}

.marquee-track span b {
    color: #8b6c16;
}

@keyframes marqueeRun {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ===== WHY / APPROACH SECTION ===== */
.why {
    padding: 160px 52px;
    position: relative;
    overflow: hidden;
}

.why-num {
    position: absolute;
    right: 40px;
    top: 40px;
    font-size: clamp(160px, 22vw, 340px);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(212, 175, 55, .22);
    letter-spacing: -12px;
    user-select: none;
    transform-style: preserve-3d;
    animation: numSpin 16s ease-in-out infinite;
}

@keyframes numSpin {
    0%, 100% { transform: rotateY(0deg) rotateX(0deg); }
    50% { transform: rotateY(12deg) rotateX(-6deg); }
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
}

.why-divider {
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, #d4af37, #f9e08c);
    border-radius: 2px;
    margin-bottom: 28px;
    transition: width 1.1s cubic-bezier(.16, 1, .3, 1);
}

.why.in .why-divider {
    width: 56px;
}

.why h2 {
    font-size: clamp(32px, 3.8vw, 54px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.why .row {
    display: block;
    overflow: hidden;
}

.why .row-inner {
    display: block;
    transform: translateY(115%);
    transition: transform 1.1s cubic-bezier(.16, 1, .3, 1);
}

.why.in .row-inner {
    transform: translateY(0);
}

.why.in .row:nth-child(2) .row-inner { transition-delay: .14s; }

.why-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-right p {
    font-size: 17px;
    line-height: 1.95;
    color: #444;
    font-weight: 400;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .8s ease, transform .8s ease;
}

.why.in .why-right p:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: .25s; }
.why.in .why-right p:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: .42s; }

.why-counter-row {
    display: flex;
    gap: 60px;
    margin-top: 50px;
}

.why-counter {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s ease, transform .7s ease;
}

.why.in .why-counter:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: .55s; }
.why.in .why-counter:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: .70s; }
.why.in .why-counter:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: .85s; }

.why-counter .num {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 900;
    line-height: 1;
}

.why-counter .lbl {
    font-size: 11px;
    letter-spacing: 2px;
    color: #666;
    text-transform: uppercase;
    margin-top: 4px;
    font-weight: 700;
}

/* ===== BRANDS ===== */
.brands {
    padding: 120px 52px;
}

.brands-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 90px;
    flex-wrap: wrap;
    gap: 20px;
}

.brands-head h2 {
    font-size: clamp(36px, 5vw, 70px);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
}

.brands-head .row {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
}

.brands-head .row-inner {
    display: inline-block;
    transform: translateY(115%);
    transition: transform 1.1s cubic-bezier(.16, 1, .3, 1);
}

.brands.in .row-inner { transform: translateY(0); }
.brands.in .brands-head .row:nth-child(2) .row-inner { transition-delay: .12s; }

.tag-pill {
    padding: 10px 24px;
    border: 1px solid rgba(212, 175, 55, .5);
    border-radius: 50px;
    font-size: 11px;
    letter-spacing: 2px;
    color: #9a7520;
    font-weight: 800;
    text-transform: uppercase;
    background: rgba(212, 175, 55, .08);
    opacity: 0;
    transform: scale(.92);
    transition: opacity .7s ease .3s, transform .7s ease .3s;
}

.brands.in .tag-pill {
    opacity: 1;
    transform: scale(1);
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    perspective: 1200px;
}

.b-frame {
    border-radius: 20px;
    padding: 2px;
    background: conic-gradient(from var(--angle, 0deg), rgba(212, 175, 55, 0) 0%, rgba(212, 175, 55, .9) 9%, rgba(249, 224, 140, .6) 12%, rgba(212, 175, 55, 0) 22%);
    opacity: 0;
    transform: translateY(60px) rotateX(10deg);
    transition: opacity .9s cubic-bezier(.16, 1, .3, 1), transform .9s cubic-bezier(.16, 1, .3, 1);
}

.brands.in .b-frame:nth-child(1) { opacity: 1; transform: translateY(0) rotateX(0); transition-delay: .08s, .08s; }
.brands.in .b-frame:nth-child(2) { opacity: 1; transform: translateY(0) rotateX(0); transition-delay: .22s, .22s; }
.brands.in .b-frame:nth-child(3) { opacity: 1; transform: translateY(0) rotateX(0); transition-delay: .38s, .38s; }

.b-frame:hover {
    animation: spinBorder 2.5s linear infinite;
}

@keyframes spinBorder {
    to { --angle: 360deg; }
}

.b-card {
    border-radius: 18px;
    padding: 50px 38px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 16px 48px rgba(180, 160, 120, 0.08);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    cursor: pointer;
    transition: box-shadow .35s ease, border-color .35s ease, transform .35s ease;
    color: #1a1a1a;
    backdrop-filter: blur(10px);
}

.b-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: radial-gradient(circle at var(--bx, 50%) var(--by, 50%), rgba(212, 175, 55, .15), transparent 55%);
    opacity: 0;
    transition: opacity .4s ease;
    pointer-events: none;
}

.b-card:hover::before { opacity: 1; }
.b-card:hover { 
    box-shadow: 0 30px 70px rgba(212, 175, 55, 0.15); 
    border-color: rgba(212, 175, 55, 0.8);
}

.b-icon {
    position: absolute;
    top: 28px;
    right: 30px;
    width: 60px;
    height: 60px;
    transform-style: preserve-3d;
    animation: iconHover 4s ease-in-out infinite;
}

@keyframes iconHover {
    0%, 100% { transform: translateY(0) rotateX(0) rotateY(0); }
    50% { transform: translateY(-6px) rotateX(8deg) rotateY(8deg); }
}

.b-icon svg { width: 100%; height: 100%; }

.b-num {
    font-size: 12px;
    color: #666;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 36px;
}

.b-name {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -.5px;
    margin-bottom: 4px;
}

.b-sub {
    font-size: 12px;
    color: #8b6c16;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 22px;
}

.b-desc {
    font-size: 14px;
    color: #444;
    line-height: 1.9;
}

.b-bar {
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, #d4af37, #f9e08c);
    border-radius: 2px;
    margin-top: 30px;
    transition: width .6s cubic-bezier(.16, 1, .3, 1);
}

.b-card:hover .b-bar { width: 100%; }

/* ===== PROJECTS Three.js section ===== */
.proj-section {
    background: #fdfbf7;
    padding: 100px 0 0;
    position: relative;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.proj-head {
    padding: 0 52px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.proj-head .tag-pill {
    border-color: rgba(212, 175, 55, .5);
    color: #9a7520;
    background: rgba(212, 175, 55, .08);
    opacity: 1;
    transform: none;
}

.proj-head-count {
    font-size: 13px;
    color: #666;
    letter-spacing: 1px;
}

.three-wrap {
    position: relative;
    width: 100%;
    height: 620px;
    overflow: hidden;
}

#threeCanvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

.active-card-label {
    position: absolute;
    bottom: 80px;
    left: 52px;
    z-index: 10;
    pointer-events: none;
}

.ac-cat {
    font-size: 11px;
    letter-spacing: 3px;
    color: #666;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 8px;
}

.ac-title {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
    background: linear-gradient(110deg, #7a5e10, #d4af37, #f9e08c, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.drag-hint {
    position: absolute;
    bottom: 80px;
    right: 52px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    pointer-events: none;
    animation: hintPulse 2.5s ease-in-out infinite;
    transition: opacity .6s ease;
}

@keyframes hintPulse {
    0%, 100% { opacity: .6; }
    50% { opacity: 1; }
}

.three-progress {
    position: absolute;
    bottom: 52px;
    left: 52px;
    right: 52px;
    height: 1px;
    background: rgba(0,0,0,.08);
    z-index: 10;
}

.three-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #7a5e10, #d4af37, #f9e08c);
    transition: width .06s linear;
}

.proj-section.hijacked::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 0 0 2px rgba(212,175,55,0.18);
    animation: hijackPulse 2s ease-in-out infinite;
    z-index: 20;
}

@keyframes hijackPulse {
    0%, 100% { box-shadow: inset 0 0 0 2px rgba(212,175,55,0.08); }
    50% { box-shadow: inset 0 0 0 2px rgba(212,175,55,0.22); }
}

/* ===== CLIENTS MARQUEE ===== */
.clients {
    padding: 80px 0;
    overflow: hidden;
    background: #fdfbf7;
    border-top: 1px solid rgba(212, 175, 55, .22);
    border-bottom: 1px solid rgba(212, 175, 55, .22);
}

.clients-inner {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: marqueeRun 24s linear infinite;
}

.client-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    color: #555;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.client-chip::before {
    content: '★';
    color: #d4af37;
    font-size: 10px;
}

/* ===== INNER PAGE HERO ===== */
.page-hero {
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 150px 52px 70px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(212,175,55,.15);
}

.page-hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(212,175,55,.08), transparent 60%);
    pointer-events: none;
}

.page-hero-pts {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.page-crumb {
    font-size: 11px;
    letter-spacing: 4px;
    color: #666;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.page-crumb a {
    color: #8b6c16;
    text-decoration: none;
}

.page-title {
    font-size: clamp(52px, 8vw, 112px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -4px;
    position: relative;
    z-index: 2;
}

.page-sub {
    font-size: 15px;
    color: #444;
    margin-top: 20px;
    font-weight: 400;
    letter-spacing: 0;
    position: relative;
    z-index: 2;
    max-width: 480px;
    line-height: 1.7;
}

/* ===== FOOTER ===== */
footer {
    background: #fdfbf7;
    padding: 120px 52px 50px;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 70px;
    margin-bottom: 90px;
}

.foot-big {
    font-size: clamp(28px, 3.5vw, 50px);
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 22px;
}

.foot-big span { color: #d4af37; }

.foot-p {
    color: #555;
    font-size: 14px;
    line-height: 1.85;
    max-width: 380px;
}

.foot-col-title {
    font-size: 11px;
    letter-spacing: 3px;
    color: #8b6c16;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 26px;
}

.foot-col a {
    display: block;
    color: #555;
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 14px;
    transition: color .25s, padding-left .25s;
}

.foot-col a:hover {
    color: #8b6c16;
    padding-left: 8px;
}

.foot-bottom {
    border-top: 1px solid rgba(212, 175, 55, .15);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    color: #666;
    font-size: 12px;
}

/* ===== CONTACT PAGE ===== */
.contact-page-wrap {
    background: radial-gradient(circle at top right, #ffffff, #fdfbf7 50%, #faf7f2 100%);
    min-height: 100vh;
    padding-top: 120px;
}

.contact-hero {
    padding: 80px 52px 60px;
    border-bottom: 1px solid rgba(212,175,55,.15);
}

.contact-hero .ch-tag {
    font-size: 11px;
    letter-spacing: 4px;
    color: #8b6c16;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 18px;
}

.contact-hero h1 {
    font-size: clamp(52px, 8vw, 110px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -4px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.contact-hero h1 span {
    background: linear-gradient(110deg, #7a5e10, #d4af37, #f9e08c, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero p {
    color: #444;
    font-size: 17px;
    line-height: 1.8;
    max-width: 520px;
}

.contact-details {
    padding: 80px 52px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    border-bottom: 1px solid rgba(212,175,55,.15);
}

.contact-item .ci-label {
    font-size: 10px;
    letter-spacing: 3px;
    color: #666;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-item .ci-value {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.contact-item .ci-value a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color .25s;
}

.contact-item .ci-value a:hover {
    color: #8b6c16;
}

/* ===== RESPONSIVE ===== */
@media(max-width:960px) {
    nav { padding: 18px 24px; }

    .hero-head { padding: 0 24px; flex-direction: column; align-items: flex-start; gap: 20px; }
    .hero-h1 { font-size: clamp(36px, 10vw, 70px); }

    .voxel-wrap {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: clamp(200px, 60vw, 300px);
        margin: 30px auto 0;
    }

    .hero-meta-bar { padding: 0 24px; gap: 40px; }

    .why { padding: 90px 24px; }
    .why-grid { grid-template-columns: 1fr; gap: 50px; }
    .why-num { font-size: clamp(100px, 28vw, 200px); }

    .brands { padding: 90px 24px; }
    .brand-grid { grid-template-columns: 1fr; }

    .foot-grid { grid-template-columns: 1fr; gap: 40px; }
    footer { padding: 80px 24px 40px; }

    .proj-head { padding: 0 24px; }
    .social-rail { display: none; }

    .overlay { flex-direction: column; justify-content: center; padding: 0 6vw; gap: 30px; }
    .ov-char { display: none; }
    .ov-foot { left: 6vw; }
    .ov-close { right: 24px; }

    .page-hero { padding: 120px 24px 50px; }
    .page-title { font-size: clamp(40px, 11vw, 80px); letter-spacing: -2px; }

    .contact-hero { padding: 60px 24px 40px; }
    .contact-details { padding: 50px 24px; grid-template-columns: 1fr; gap: 30px; }
}

/* ===== ABOUT / GROUP SECTION (index.html) ===== */
.about-section {
    padding: 140px 52px;
    background: radial-gradient(ellipse at 68% 44%, rgba(212, 175, 55, .05), transparent 55%), linear-gradient(150deg, #ffffff 0%, #fefcf9 60%, #faf6ee 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,.35), transparent);
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,.15), transparent);
}

.about-tag {
    font-size: 11px;
    letter-spacing: 4px;
    color: #8b6c16;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 52px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 90px;
    align-items: start;
}

.about-heading {
    font-size: clamp(34px, 4.2vw, 58px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    color: #1a1a1a;
    margin-bottom: 28px;
}

.about-body {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    max-width: 420px;
    margin-bottom: 38px;
}

.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border: 1px solid rgba(212,175,55,.5);
    border-radius: 6px;
    color: #8b6c16;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background .3s, box-shadow .3s, gap .3s;
}

.about-cta:hover {
    background: rgba(212,175,55,.08);
    box-shadow: 0 0 22px rgba(212,175,55,.22);
    gap: 16px;
}

.about-companies {
    display: flex;
    flex-direction: column;
}

.about-co {
    padding: 30px 0 30px 20px;
    border-bottom: 1px solid rgba(212,175,55,.15);
    transition: padding-left .35s ease, background .35s ease;
    border-radius: 4px;
}

.about-co:first-child { border-top: 1px solid rgba(212,175,55,.15); }

.about-co:hover {
    padding-left: 32px;
    background: rgba(212, 175, 55, .05);
}

.about-co-num {
    font-size: 11px;
    color: #d4af37;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 8px;
}

.about-co-name {
    font-size: 22px;
    font-weight: 900;
    color: #1a1a1a;
    letter-spacing: -.5px;
    margin-bottom: 4px;
    transition: color .25s;
}

.about-co:hover .about-co-name { color: #8b6c16; }

.about-co-cat {
    font-size: 11px;
    letter-spacing: 2px;
    color: #8b6c16;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-co-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.85;
}

/* ===== GROUP BANNER (inner pages) ===== */
.group-banner {
    background: #fdfbf7;
    padding: 44px 52px;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(212,175,55,.2);
    border-bottom: 1px solid rgba(212,175,55,.2);
}

.gb-label {
    font-size: 10px;
    letter-spacing: 4px;
    color: #666;
    text-transform: uppercase;
    font-weight: 700;
    flex-shrink: 0;
}

.gb-divider {
    width: 1px;
    height: 40px;
    background: rgba(212,175,55,.25);
    flex-shrink: 0;
}

.gb-companies {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.gb-co {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 12px 22px;
    border: 1px solid rgba(212,175,55,.22);
    border-radius: 8px;
    text-decoration: none;
    transition: border-color .3s, background .3s, transform .25s;
    background: #ffffff;
}

.gb-co:hover {
    border-color: rgba(212,175,55,.6);
    background: rgba(212,175,55,.05);
    transform: translateY(-3px);
}

.gb-co-name {
    font-size: 14px;
    font-weight: 900;
    color: #1a1a1a;
    letter-spacing: -.2px;
    white-space: nowrap;
}

.gb-co-cat {
    font-size: 10px;
    letter-spacing: 2px;
    color: #666;
    text-transform: uppercase;
    font-weight: 700;
    white-space: nowrap;
}

.gb-right {
    margin-left: auto;
    font-size: 12px;
    color: #666;
    letter-spacing: 1px;
    flex-shrink: 0;
}

@media(max-width:960px) {
    .about-section { padding: 90px 24px; }
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .group-banner { padding: 36px 24px; gap: 24px; }
    .gb-divider, .gb-right { display: none; }
}

/* ===== CORE PHILOSOPHY (approach.html) ===== */
.phil-section {
    padding: 100px 52px;
    background: #ffffff;
    position: relative;
}

.phil-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.phil-card {
    background: #fdfbf7;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 16px;
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: transform .35s, border-color .35s, box-shadow .35s;
    cursor: default;
}

.phil-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212,175,55,.65);
    box-shadow: 0 20px 40px rgba(212,175,55,.08);
}

.phil-num {
    font-size: 13px;
    font-weight: 700;
    color: #8b6c16;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.phil-title {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 14px;
}

.phil-desc {
    font-size: 14px;
    color: #444;
    line-height: 1.8;
}

/* ===== PROCESS TIMELINE (approach.html) ===== */
.timeline-section {
    padding: 120px 52px;
    background: #faf7f2;
}

.timeline-wrap {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
    padding: 20px 0;
}

.timeline-wrap::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, rgba(212,175,55,0), rgba(212,175,55,.35) 15%, rgba(212,175,55,.35) 85%, rgba(212,175,55,0));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 30px;
    width: 16px;
    height: 16px;
    background: #d4af37;
    border: 4px solid #faf7f2;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(212,175,55,.5);
    z-index: 2;
    transition: transform .3s;
}

.timeline-item:hover .timeline-dot {
    transform: translateX(-50%) scale(1.3);
}

.timeline-content {
    width: 44%;
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 12px;
    padding: 30px;
    transition: border-color .3s, transform .3s;
}

.timeline-item:hover .timeline-content {
    border-color: rgba(212,175,55,.65);
    transform: translateY(-4px);
}

.tl-step {
    font-size: 11px;
    color: #8b6c16;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.tl-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.tl-desc {
    font-size: 13px;
    color: #555;
    line-height: 1.7;
}

@media(max-width:768px) {
    .timeline-wrap::before { left: 20px; }
    .timeline-item { flex-direction: row !important; margin-bottom: 30px; }
    .timeline-dot { left: 20px; }
    .timeline-content { width: calc(100% - 40px); margin-left: 40px; }
}

/* ===== SERVICE CAPABILITIES (brands.html) ===== */
.caps-section {
    padding: 100px 52px;
    background: #ffffff;
}

.caps-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.caps-tab-btn {
    background: #fdfbf7;
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: #555;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s;
}

.caps-tab-btn.active, .caps-tab-btn:hover {
    border-color: #d4af37;
    color: #8b6c16;
    background: rgba(212, 175, 55, .08);
}

.caps-pane {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.caps-pane.active {
    display: grid;
    animation: fadeIn .5s ease forwards;
}

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

.cap-item {
    background: #fdfbf7;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.cap-icon {
    color: #d4af37;
    font-size: 24px;
    margin-bottom: 20px;
}

.cap-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.cap-desc {
    font-size: 13px;
    color: #444;
    line-height: 1.75;
}

/* ===== CASE STUDIES (projects.html) ===== */
.cs-section {
    padding: 120px 52px;
    background: #faf7f2;
    border-top: 1px solid rgba(212,175,55,.15);
}

.cs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.cs-card {
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .35s, border-color .35s, box-shadow .35s;
    transform-style: preserve-3d;
}

.cs-card:hover {
    border-color: rgba(212,175,55,.65);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212,175,55,0.08);
}

.cs-img-wrap {
    height: 240px;
    position: relative;
    overflow: hidden;
    background: #fdfbf7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-img-wrap i {
    font-size: 48px;
    color: rgba(212,175,55,.15);
    transition: transform .6s, color .3s;
}

.cs-card:hover .cs-img-wrap i {
    transform: scale(1.15) rotate(5deg);
    color: rgba(212,175,55,.35);
}

.cs-info {
    padding: 30px;
}

.cs-cat {
    font-size: 10px;
    letter-spacing: 2px;
    color: #8b6c16;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.cs-title {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.cs-desc {
    font-size: 13px;
    color: #444;
    line-height: 1.7;
}

/* ===== CONTACT FORM & FAQ (contact.html) ===== */
.contact-form-section {
    padding: 100px 52px;
    background: #ffffff;
}

.cform-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.cform-wrap {
    background: #fdfbf7;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 50px 40px;
}

.cform-title {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.cform-p {
    font-size: 14px;
    color: #555;
    margin-bottom: 36px;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding: 10px 0;
    color: #1a1a1a;
    font-size: 14px;
    font-family: inherit;
    transition: border-color .3s;
}

.form-input:focus {
    outline: none;
    border-color: #d4af37;
}

.form-label {
    position: absolute;
    left: 0; top: 10px;
    color: #888;
    font-size: 14px;
    pointer-events: none;
    transition: all .3s ease;
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    top: -12px;
    font-size: 11px;
    color: #8b6c16;
    letter-spacing: 1px;
}

.form-btn {
    background: transparent;
    border: 1px solid #d4af37;
    color: #d4af37;
    padding: 14px 36px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .3s, box-shadow .3s;
}

.form-btn:hover {
    background: rgba(212,175,55,.08);
    box-shadow: 0 0 20px rgba(212,175,55,.2);
}

.faq-wrap h2 {
    font-size: 32px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.faq-item {
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 24px 0;
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-q h3 {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    transition: color .3s;
}

.faq-item:hover .faq-q h3 {
    color: #8b6c16;
}

.faq-icon {
    font-size: 12px;
    color: #888;
    transition: transform .3s, color .3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #d4af37;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s cubic-bezier(0, 1, 0, 1), margin-top .3s;
}

.faq-item.active .faq-a {
    max-height: 200px;
    margin-top: 15px;
    transition: max-height .35s cubic-bezier(1, 0, 1, 0), margin-top .3s;
}

.faq-a p {
    font-size: 13.5px;
    color: #555;
    line-height: 1.8;
}

@media(max-width:960px) {
    .cform-grid { grid-template-columns: 1fr; gap: 60px; }
}

/* ===== SCROLL REVEAL UTILITIES ===== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-fade {
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade.revealed {
    opacity: 1;
}

/* Delay modifiers for stagger reveals */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
