*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --black: #0B0B0B; --white: #FFFFFF; --volt: #CCFF00;
  --grey: #888888; --grey-lt: #161616; --grey-mid: #2A2A2A;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.0, 0, 0.2, 1);
}
html { scroll-behavior: smooth; overflow-x: hidden; }
body { background: var(--black); color: var(--white); font-family: 'Inter', sans-serif; font-size: 16px; line-height: 1.6; overflow-x: hidden; cursor: none; max-width: 100vw; }

/* ── CURSOR ── */
#cursor { width: 10px; height: 10px; background: var(--volt); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: width .25s var(--ease), height .25s var(--ease), background .2s, border .2s; }
#cursor.expand { width: 44px; height: 44px; background: transparent; border: 1.5px solid var(--volt); }
#cursor.on-image { width: 80px; height: 80px; background: transparent; border: 1px solid rgba(255,255,255,0.4); }
body.edit-mode #cursor { display: none; }
body.edit-mode { cursor: auto; }
@media (hover: none) { #cursor { display: none; } body { cursor: auto; } }
::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-thumb { background: var(--volt); }

/* ── NAV ── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1.75rem 3rem; backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); background: rgba(11,11,11,0.5); border-bottom: 1px solid rgba(255,255,255,0.04); transition: padding .4s var(--ease), background .4s; }
nav.scrolled { padding: 1.1rem 3rem; background: rgba(11,11,11,0.85); }
.nav-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); text-decoration: none; display: flex; align-items: center; gap: 0.2rem; white-space: nowrap; }
.nav-logo-dot { width: 6px; height: 6px; background: var(--volt); border-radius: 50%; margin-left: 2px; }
.nav-right { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; transition: color .2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta { background: var(--volt); color: var(--black); text-decoration: none; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.6rem 1.3rem; border-radius: 2px; transition: background .2s, transform .2s var(--ease); white-space: nowrap; }
.nav-cta:hover { background: #d4ff1a; transform: translateY(-1px); }
@media (max-width: 768px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  .nav-cta { padding: 0.5rem 1rem; font-size: 0.68rem; }
}

/* ── HERO ── */
#hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end; padding: 0 3rem 0; position: relative; overflow: hidden; }
.hero-bg-img { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0.12; filter: grayscale(100%); }
.hero-bg-gradient { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to bottom, rgba(11,11,11,0.3) 0%, rgba(11,11,11,0.0) 30%, rgba(11,11,11,0.6) 75%, rgba(11,11,11,1) 100%), radial-gradient(ellipse 70% 50% at 60% 40%, rgba(204,255,0,0.04) 0%, transparent 70%); }
.hero-grid-lines { position: absolute; inset: 0; z-index: 1; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 75%, transparent 100%); }
.hero-content { position: relative; z-index: 2; padding-bottom: 6rem; }
.hero-label { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 2rem; display: flex; align-items: center; gap: 0.75rem; opacity: 0; transform: translateY(16px); animation: fadeUp .8s var(--ease) .2s forwards; }
.hero-label-line { width: 28px; height: 1px; background: var(--volt); }
.hero-headline { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(4rem, 10.5vw, 12rem); line-height: 0.88; letter-spacing: -0.04em; text-transform: uppercase; }
.hero-headline .line { display: block; overflow: hidden; }
.hero-headline .line-inner { display: block; opacity: 0; transform: translateY(105%); animation: slideUp 1.1s var(--ease) forwards; }
.hero-headline .line:nth-child(1) .line-inner { animation-delay: .25s; }
.hero-headline .line:nth-child(2) .line-inner { animation-delay: .38s; }
.hero-headline .line:nth-child(3) .line-inner { animation-delay: .51s; }
.hero-headline .accent { color: var(--volt); }
.hero-sub-row { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 2.5rem; opacity: 0; transform: translateY(16px); animation: fadeUp .8s var(--ease) .85s forwards; }
.hero-sub { max-width: 400px; font-size: 0.9rem; color: rgba(255,255,255,0.45); line-height: 1.75; }
.hero-scroll { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.25); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; }
.hero-scroll-line { width: 1px; height: 56px; background: linear-gradient(to bottom, var(--volt), transparent); animation: scrollPulse 2.5s ease-in-out infinite; }
/* Client strip */
.hero-clients { position: relative; z-index: 2; border-top: 1px solid rgba(255,255,255,0.06); padding: 1.4rem 0; display: flex; align-items: center; gap: 0; overflow: hidden; opacity: 0; animation: fadeUp .8s var(--ease) 1.1s forwards; max-width: 100vw; }
.hero-clients-label { font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.2); white-space: nowrap; margin-right: 0; padding-right: 2.5rem; font-weight: 500; flex-shrink: 0; position: relative; z-index: 2; background: var(--black); }
.hero-clients-label::after { content: ''; position: absolute; top: 0; right: 0; width: 60px; height: 100%; background: linear-gradient(to right, transparent, var(--black)); pointer-events: none; }
.hero-clients-list { display: flex; align-items: center; gap: 0; white-space: nowrap; animation: marquee 22s linear infinite; }
.hero-clients-list span { font-family: 'Syne', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.18); padding: 0 2rem; transition: color .2s; }
.hero-clients-list span:hover { color: rgba(255,255,255,0.5); }
.hero-clients-list .sep { color: var(--volt); padding: 0; font-size: 0.4rem; }
@media (max-width: 768px) {
  #hero { padding: 0 1.5rem 0; }
  .hero-headline { font-size: clamp(3.2rem, 14vw, 6rem); }
  .hero-content { padding-bottom: 4rem; }
  .hero-sub-row { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .hero-scroll { display: none; }
}

/* ── ABOUT ── */
#about { padding: 9rem 3rem 8rem; display: grid; grid-template-columns: 220px 1fr; gap: 5rem; align-items: start; border-top: 1px solid rgba(255,255,255,0.05); }
.about-tag { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--volt); margin-bottom: 1.5rem; }
.about-sidebar-copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); line-height: 1.8; }
.about-manifesto { font-family: 'Syne', sans-serif; font-size: clamp(1.6rem, 3vw, 2.8rem); font-weight: 700; line-height: 1.12; letter-spacing: -0.025em; color: var(--white); margin-bottom: 3.5rem; }
.about-manifesto em { font-style: normal; color: rgba(255,255,255,0.3); }
.about-bottom { display: grid; grid-template-columns: repeat(3, 1fr) 1.4fr; gap: 2rem; padding-top: 3rem; border-top: 1px solid rgba(255,255,255,0.05); align-items: start; }
.stat-num { font-family: 'Syne', sans-serif; font-size: clamp(2.2rem, 3.5vw, 3.5rem); font-weight: 800; letter-spacing: -0.05em; line-height: 1; color: var(--volt); }
.stat-label { font-size: 0.7rem; color: rgba(255,255,255,0.3); letter-spacing: 0.04em; margin-top: 0.5rem; line-height: 1.5; }
.about-brands-label { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 0.75rem; }
.about-brands-list { display: flex; flex-direction: column; gap: 0.25rem; }
.about-brands-list span { font-family: 'Syne', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; color: rgba(255,255,255,0.5); line-height: 1.6; }
@media (max-width: 1000px) {
  #about { grid-template-columns: 1fr; padding: 6rem 1.5rem; gap: 3rem; }
  .about-bottom { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 600px) {
  .about-bottom { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-manifesto { font-size: clamp(1.4rem, 6vw, 2rem); }
}

/* ── WORK ── */
#work { padding: 5rem 3rem 10rem; border-top: 1px solid rgba(255,255,255,0.05); overflow: hidden; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3.5rem; }
.section-eyebrow { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--volt); margin-bottom: 0.6rem; }
.section-title { font-family: 'Syne', sans-serif; font-size: clamp(1.8rem, 3.5vw, 3.5rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1; text-transform: uppercase; }
.section-count { font-family: 'Syne', sans-serif; font-size: 4.5rem; font-weight: 800; color: rgba(255,255,255,0.04); line-height: 1; letter-spacing: -0.05em; }
.work-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.25rem; }

/* Asymmetric bento */
.project-card:nth-child(1)  { grid-column: span 7; }
.project-card:nth-child(2)  { grid-column: span 5; }
.project-card:nth-child(3)  { grid-column: span 5; }
.project-card:nth-child(4)  { grid-column: span 7; }
.project-card:nth-child(5)  { grid-column: span 6; }
.project-card:nth-child(6)  { grid-column: span 6; }
.project-card:nth-child(7)  { grid-column: span 7; }
.project-card:nth-child(8)  { grid-column: span 5; }
.project-card:nth-child(9)  { grid-column: span 5; }
.project-card:nth-child(10) { grid-column: span 7; }
.project-card:nth-child(n+11) { grid-column: span 6; }

.project-card { position: relative; overflow: hidden; cursor: none; border-radius: 2px; aspect-ratio: 4/3; }
.project-card:nth-child(odd) { aspect-ratio: 16/10; }
.project-card:nth-child(3n+2) { aspect-ratio: 3/2; }

.card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .9s var(--ease); }
.card-bg-video { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.card-scrim { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(11,11,11,0.1) 0%, rgba(11,11,11,0.8) 100%); opacity: 0.6; transition: opacity .4s; }
.project-card:hover .card-bg { transform: scale(1.05); }
.project-card:hover .card-scrim { opacity: 1; }

.card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.75rem 2rem; transform: translateY(6px); opacity: 0.9; transition: transform .45s var(--ease), opacity .4s; }
.project-card:hover .card-content { transform: translateY(0); opacity: 1; }
.card-discipline { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--volt); margin-bottom: 0.35rem; opacity: 0; transform: translateY(6px); transition: opacity .35s var(--ease) .05s, transform .35s var(--ease) .05s; }
.project-card:hover .card-discipline { opacity: 1; transform: translateY(0); }
.card-title { font-family: 'Syne', sans-serif; font-size: clamp(0.95rem, 1.8vw, 1.5rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; text-shadow: 0 2px 20px rgba(0,0,0,0.5); hyphens: auto; overflow-wrap: break-word; word-break: break-word; }
.card-client { font-size: 0.65rem; color: rgba(255,255,255,0.4); margin-top: 0.3rem; letter-spacing: 0.05em; opacity: 0; transition: opacity .35s var(--ease) .08s; }
.project-card:hover .card-client { opacity: 1; }

.card-index { position: absolute; top: 1.25rem; left: 1.5rem; font-family: 'Syne', sans-serif; font-size: 0.65rem; font-weight: 700; color: rgba(255,255,255,0.2); letter-spacing: 0.1em; }
.card-arrow { position: absolute; top: 1.25rem; right: 1.5rem; width: 32px; height: 32px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; transform: scale(0.8); transition: opacity .3s, transform .3s var(--ease), border-color .2s, background .2s; }
.project-card:hover .card-arrow { opacity: 1; transform: scale(1); border-color: var(--volt); background: var(--volt); }
.card-arrow svg { width: 12px; height: 12px; }
.card-arrow path { stroke: var(--black); }

.project-card::before { content: ''; position: absolute; left: 0; top: 0; width: 2px; height: 0; background: var(--volt); z-index: 2; transition: height .5s var(--ease); }
.project-card:hover::before { height: 100%; }

@media (max-width: 900px) { .project-card { grid-column: span 12 !important; aspect-ratio: 16/9 !important; } #work { padding: 4rem 1.5rem 6rem; } .card-title { font-size: 1.1rem; } .card-content { padding: 1.25rem 1.25rem; } .work-grid { overflow: hidden; } }

/* ── CASE STUDY OVERLAY ── */
#cs-overlay { position: fixed; inset: 0; z-index: 300; background: var(--black); overflow-y: auto; overflow-x: hidden; opacity: 0; pointer-events: none; transition: opacity .55s var(--ease); }
#cs-overlay.open { opacity: 1; pointer-events: all; }
.cs-close { position: fixed; top: 1.75rem; right: 2.5rem; z-index: 301; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color .2s, background .2s; background: rgba(11,11,11,0.6); backdrop-filter: blur(10px); }
.cs-close:hover { border-color: var(--volt); background: var(--volt); }
.cs-close:hover path { stroke: var(--black); }
.cs-close svg { width: 14px; height: 14px; }
.cs-close path { stroke: var(--white); transition: stroke .2s; }
.cs-body { max-width: 1100px; margin: 0 auto; padding: 7rem 3rem 6rem; box-sizing: border-box; width: 100%; }
.cs-header { margin-bottom: 4rem; }
.cs-meta { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 1.5rem; }
.cs-discipline { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--volt); }
.cs-sep { width: 24px; height: 1px; background: rgba(255,255,255,0.15); }
.cs-year { font-size: 0.6rem; color: rgba(255,255,255,0.3); letter-spacing: 0.1em; }
.cs-title { font-family: 'Syne', sans-serif; font-size: clamp(2.8rem, 6.5vw, 7.5rem); font-weight: 800; letter-spacing: -0.04em; text-transform: uppercase; line-height: 0.88; hyphens: auto; overflow-wrap: break-word; }
.cs-overview { display: grid; grid-template-columns: 1fr 300px; gap: 5rem; margin-bottom: 4rem; padding-bottom: 4rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.cs-text { font-size: 1rem; line-height: 1.85; color: rgba(255,255,255,0.6); }
.cs-details { display: flex; flex-direction: column; gap: 1.25rem; }
.cs-detail-label { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--volt); margin-bottom: 0.3rem; }
.cs-detail-val { font-family: 'Syne', sans-serif; font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.8); }
.cs-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1.5rem; }
.cs-tag { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.3); padding: 0.3rem 0.7rem; border-radius: 2px; }
.cs-live-link { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--volt); font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; border-bottom: 1px solid rgba(204,255,0,0.4); padding-bottom: 0.2rem; margin-top: 2rem; transition: border-color .2s; }
.cs-live-link:hover { border-color: var(--volt); }

/* ── FLUID GALLERY ── */
.cs-gallery { columns: 2; column-gap: 1.25rem; }
.cs-gallery-item { position: relative; border-radius: 2px; overflow: hidden; background: var(--grey-lt); cursor: zoom-in; break-inside: avoid; margin-bottom: 1.25rem; display: block; }
.cs-gallery-item img { width: 100%; height: auto; display: block; transition: transform .5s var(--ease); }
.cs-gallery-item:hover img { transform: scale(1.015); }
.cs-gallery-item.is-video { cursor: default; }
.cs-gallery .cs-gallery-item.is-video:only-child { column-span: all; width: 100%; }
.cs-gallery-item.is-video video { width: 100%; height: auto; display: block; }
.cs-gallery-item.is-video iframe { width: 100%; aspect-ratio: 16/9; display: block; border: none; }
.cs-video-badge { position: absolute; top: .75rem; left: .75rem; background: rgba(0,0,0,.6); color: var(--white); font-family: 'Syne', sans-serif; font-size: .6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .25rem .6rem; border-radius: 2px; backdrop-filter: blur(6px); pointer-events: none; z-index: 1; }
.cs-add-row { display: none; gap: .75rem; margin-bottom: 1.25rem; break-inside: avoid; }
body.edit-mode .cs-add-row { display: flex; }
.cs-img-edit-bar { display: none; position: absolute; bottom: 0; left: 0; right: 0; padding: .75rem; background: linear-gradient(to top, rgba(0,0,0,.8), transparent); gap: .5rem; justify-content: flex-end; align-items: center; }
body.edit-mode .cs-gallery-item .cs-img-edit-bar { display: flex; }
body.edit-mode .cs-gallery-item { cursor: default; }
.cs-img-btn { display: inline-flex; align-items: center; gap: .35rem; border: none; font-family: 'Syne', sans-serif; font-weight: 700; font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; padding: .4rem .75rem; border-radius: 2px; cursor: pointer; transition: background .2s; }
.cs-img-btn.replace { background: var(--volt); color: var(--black); }
.cs-img-btn.replace:hover { background: #d4ff1a; }
.cs-img-btn.remove { background: rgba(255,60,60,.15); color: rgba(255,80,80,.8); border: 1px solid rgba(255,60,60,.2); }
.cs-img-btn.remove:hover { background: rgba(255,60,60,.3); }
.cs-add-row button:hover { border-color: var(--volt) !important; color: var(--volt) !important; }
.cs-edit-details { display: none; margin-bottom: 2rem; }
body.edit-mode .cs-edit-details { display: flex; }
.cs-edit-details-btn { display: inline-flex; align-items: center; gap: .5rem; background: rgba(204,255,0,.1); border: 1px solid rgba(204,255,0,.25); color: var(--volt); font-family: 'Syne', sans-serif; font-weight: 700; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; padding: .6rem 1.1rem; border-radius: 2px; cursor: pointer; transition: background .2s; }
.cs-edit-details-btn:hover { background: rgba(204,255,0,.2); }

/* ── LIGHTBOX ── */
#lightbox { position: fixed; inset: 0; z-index: 500; background: rgba(0,0,0,.97); display: none; align-items: center; justify-content: center; }
#lightbox.open { display: flex; }
#lightbox-img { max-width: 90vw; max-height: 90vh; width: auto; height: auto; display: block; border-radius: 2px; user-select: none; }
#lightbox-prev, #lightbox-next { position: fixed; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; background: rgba(11,11,11,.6); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color .2s, background .2s; backdrop-filter: blur(10px); }
#lightbox-prev { left: 1.5rem; }
#lightbox-next { right: 1.5rem; }
#lightbox-prev:hover, #lightbox-next:hover { border-color: var(--volt); background: var(--volt); }
#lightbox-prev:hover path, #lightbox-next:hover path { stroke: var(--black); }
#lightbox-prev svg, #lightbox-next svg { width: 18px; height: 18px; }
#lightbox-prev path, #lightbox-next path { stroke: var(--white); transition: stroke .2s; }
#lightbox-close { position: fixed; top: 1.5rem; right: 1.5rem; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; background: rgba(11,11,11,.6); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color .2s, background .2s; backdrop-filter: blur(10px); }
#lightbox-close:hover { border-color: var(--volt); background: var(--volt); }
#lightbox-close:hover path { stroke: var(--black); }
#lightbox-close svg { width: 14px; height: 14px; }
#lightbox-close path { stroke: var(--white); transition: stroke .2s; }
#lightbox-counter { position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%); font-family: 'Syne', sans-serif; font-size: .7rem; font-weight: 600; letter-spacing: .12em; color: rgba(255,255,255,.3); }

@media (max-width: 900px) {
  .cs-overview { grid-template-columns: 1fr; gap: 2.5rem; }
  .cs-gallery { columns: 1; }
  .cs-body { padding: 6rem 1.5rem 4rem; }
  .cs-close { right: 1.5rem; }
  .cs-title { font-size: clamp(1.6rem, 9vw, 3rem); }
  #lightbox-prev { left: .5rem; }
  #lightbox-next { right: .5rem; }
  #lightbox-img { max-width: 98vw; max-height: 80vh; }
}

/* ── CONTACT ── */
#contact { padding: 9rem 3rem 6rem; border-top: 1px solid rgba(255,255,255,0.05); position: relative; overflow: hidden; max-width: 100vw; }
.contact-watermark { position: absolute; bottom: -4rem; right: -2rem; font-family: 'Syne', sans-serif; font-size: clamp(8rem, 18vw, 22rem); font-weight: 800; color: rgba(255,255,255,0.02); letter-spacing: -0.06em; text-transform: uppercase; line-height: 1; pointer-events: none; user-select: none; }
.contact-headline { font-family: 'Syne', sans-serif; font-size: clamp(3.5rem, 8.5vw, 10rem); font-weight: 800; letter-spacing: -0.045em; text-transform: uppercase; line-height: 0.88; margin-bottom: 5rem; }
.contact-headline .volt { color: var(--volt); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; position: relative; z-index: 1; }
.form-field { margin-bottom: 1.75rem; }
.form-label { display: block; font-size: 0.6rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 0.65rem; }
.form-input { width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 0.75rem 0; color: var(--white); font-family: 'Inter', sans-serif; font-size: 0.95rem; outline: none; transition: border-color .3s; resize: none; }
.form-input:focus { border-color: var(--volt); }
.form-input::placeholder { color: rgba(255,255,255,0.12); }
.form-btn { display: inline-flex; align-items: center; gap: 0.7rem; background: var(--volt); color: var(--black); border: none; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 1rem 2rem; border-radius: 2px; cursor: pointer; margin-top: 1rem; transition: background .2s, transform .2s var(--ease); }
.form-btn:hover { background: #d4ff1a; transform: translateY(-2px); }
.form-btn svg { width: 14px; height: 14px; transition: transform .2s var(--ease); }
.form-btn:hover svg { transform: translate(3px,-3px); }
.info-label { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.2); margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.info-email { font-family: 'Syne', sans-serif; font-size: clamp(1.1rem, 2.2vw, 1.8rem); font-weight: 700; letter-spacing: -0.02em; color: var(--white); text-decoration: none; display: block; margin-bottom: 3rem; transition: color .2s; }
.info-email:hover { color: var(--volt); }
.social-list { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 4rem; }
.social-item { display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,0.35); text-decoration: none; font-size: 0.82rem; font-weight: 500; padding: 0.55rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); transition: color .2s, padding-left .25s; }
.social-item:hover { color: var(--volt); padding-left: 0.5rem; }
.social-item-arrow { font-size: 0.65rem; color: rgba(255,255,255,0.15); }
.footer-bar { display: flex; align-items: center; justify-content: space-between; padding-top: 3rem; border-top: 1px solid rgba(255,255,255,0.05); margin-top: 6rem; }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.2); }
.footer-credit { font-size: 0.68rem; color: rgba(255,255,255,0.12); letter-spacing: 0.05em; }
@media (max-width: 900px) {
  #contact { padding: 5rem 1.5rem 4rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
  .contact-headline { margin-bottom: 3rem; }
  .footer-bar { flex-direction: column; gap: 1rem; text-align: center; }
}
@media (max-width: 600px) {
  .contact-headline { font-size: clamp(3rem, 14vw, 6rem); }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }
@keyframes scrollPulse { 0%,100%{opacity:.3;transform:scaleY(1)}50%{opacity:.8;transform:scaleY(1.15)} }
@keyframes marquee { from{transform:translateX(0)}to{transform:translateX(-50%)} }
.reveal { opacity:0; transform:translateY(28px); transition:opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-d1 { transition-delay:.1s; } .reveal-d2 { transition-delay:.2s; } .reveal-d3 { transition-delay:.3s; } .reveal-d4 { transition-delay:.4s; }
