:root {
  --yellow: #ffd500;
  --yellow-soft: #fff2a8;
  --black: #0b0b0b;
  --ink: #171717;
  --paper: #f4f4ee;
  --white: #ffffff;
  --gray: #6e6e68;
  --line: #d7d7cf;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-color: var(--yellow) var(--black); scrollbar-width: thin; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
::selection { background: var(--yellow); color: var(--black); }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img, svg { display: block; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; z-index: 9999; top: 12px; left: 12px; padding: 10px 16px;
  background: var(--yellow); color: var(--black); transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.page-noise { display: none; }
.cursor-glow {
  position: fixed; z-index: 0; top: 0; left: 0; width: 300px; aspect-ratio: 1;
  border-radius: 50%; background: radial-gradient(circle, rgba(255,213,0,.13), transparent 68%);
  pointer-events: none; transform: translate(-50%,-50%);
}
.section { position: relative; z-index: 1; padding: 120px 0; }
.gold-text { color: inherit; }
.section-kicker {
  display: flex; align-items: center; gap: 12px; margin-bottom: 44px;
  color: var(--black); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
}
.section-kicker span {
  display: grid; min-width: 32px; height: 24px; padding-inline: 7px; place-items: center;
  background: var(--yellow); color: var(--black); letter-spacing: .05em;
}
.section-kicker::after { width: 44px; height: 2px; background: var(--black); content: ""; }

/* Header */
.site-header {
  position: fixed; z-index: 100; top: 0; right: 0; left: 0;
  border-bottom: 1px solid transparent; transition: .3s var(--ease);
}
.site-header.scrolled {
  border-color: var(--black); background: rgba(255,255,255,.94);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
}
.site-header.hidden { transform: translateY(-100%); }
.nav-wrap { display: flex; align-items: center; gap: 28px; height: 82px; }
.brand { display: inline-flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-mark {
  position: relative; display: grid; width: 40px; height: 40px; place-items: center;
  border: 2px solid var(--black); background: var(--yellow); color: var(--black); transform: rotate(45deg);
}
.brand-mark::before, .brand-mark::after { position: absolute; width: 5px; height: 5px; background: var(--black); content: ""; }
.brand-mark::before { top: -3px; right: -3px; }
.brand-mark::after { bottom: -3px; left: -3px; }
.brand-mark span { font-size: 10px; font-weight: 900; transform: rotate(-45deg); }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-size: 15px; font-weight: 850; letter-spacing: -.03em; }
.brand-copy small { margin-top: 5px; color: #555; font-size: 8px; font-weight: 800; letter-spacing: .3em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 27px; }
.main-nav a {
  position: relative; color: #363632; font-size: 11px; font-weight: 750; letter-spacing: .02em;
}
.main-nav a::after {
  position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; background: var(--yellow);
  content: ""; transform: scaleX(0); transform-origin: right; transition: transform .3s var(--ease);
}
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); transform-origin: left; }
.mobile-portal-link { display: none; }
.portal-link {
  display: inline-flex; gap: 7px; align-items: center; font-size: 10px; font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase; transition: color .2s;
}
.portal-link:hover { color: #887000; }
.nav-cta {
  display: inline-flex; min-height: 44px; align-items: center; gap: 9px; padding: 0 18px;
  border: 2px solid var(--black); background: var(--yellow); color: var(--black);
  font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase;
  box-shadow: 4px 4px 0 var(--black); transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--black); }
.nav-cta svg, .button svg { width: 17px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.menu-toggle { display: none; }

/* Hero */
.hero {
  position: relative; min-height: 860px; padding-top: 82px; overflow: hidden;
  border-bottom: 2px solid var(--black); background: var(--white);
}
.hero::before {
  position: absolute; top: 150px; right: 3%; width: 43%; height: 590px;
  border: 2px solid var(--black); background: var(--yellow); content: ""; transform: translate(16px,16px);
}
.hero::after { display: none; }
.hero-backdrop {
  position: absolute; z-index: 1; top: 130px; right: 4.3%; width: 43%; height: 590px;
  overflow: hidden; border: 2px solid var(--black); background: var(--black);
}
.hero-backdrop::before {
  position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg,rgba(0,0,0,.1),transparent 65%); content: "";
}
.hero-backdrop img { width: 100%; height: 100%; object-fit: cover; object-position: 67% center; animation: hero-drift 12s ease-in-out infinite alternate; }
@keyframes hero-drift { to { transform: scale(1.05) translateX(-1%); } }
.hero-grid {
  position: absolute; inset: 82px 50% 62px 0; opacity: .1;
  background-image: linear-gradient(var(--black) 1px,transparent 1px),linear-gradient(90deg,var(--black) 1px,transparent 1px);
  background-size: 72px 72px; -webkit-mask-image: linear-gradient(90deg,#000,transparent); mask-image: linear-gradient(90deg,#000,transparent);
}
.hero-inner { position: relative; z-index: 3; display: flex; min-height: 695px; align-items: center; padding: 55px 0 80px; }
.hero-copy { width: 57%; }
.eyebrow {
  display: flex; align-items: center; gap: 10px; margin-bottom: 25px;
  color: var(--black); font-size: 10px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase;
}
.eyebrow span { width: 10px; height: 10px; border: 2px solid var(--black); background: var(--yellow); }
.hero h1 {
  max-width: 720px; margin: 0; color: var(--black); font-size: clamp(62px,6.3vw,91px);
  font-weight: 750; letter-spacing: -.075em; line-height: .95; text-wrap: balance;
}
.hero h1 .gold-text {
  display: inline; padding: 0 .08em .06em; background: linear-gradient(transparent 52%,var(--yellow) 52%);
  color: var(--black); font-family: inherit; font-weight: 750; font-style: normal;
  box-decoration-break: clone; -webkit-box-decoration-break: clone;
}
.hero-copy > p { max-width: 590px; margin: 28px 0 0; color: #4f4f49; font-size: 16px; line-height: 1.75; }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; }
.button {
  position: relative; display: inline-flex; min-height: 54px; align-items: center; justify-content: center;
  gap: 14px; padding: 0 25px; border: 2px solid var(--black); cursor: pointer;
  font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}
.button-gold { background: var(--yellow); color: var(--black); box-shadow: 5px 5px 0 var(--black); }
.button-gold:hover { transform: translate(3px,3px); box-shadow: 2px 2px 0 var(--black); }
.button-ghost { background: var(--white); color: var(--black); }
.button-ghost:hover { background: var(--black); color: var(--white); }
.hero-trust { display: flex; align-items: center; gap: 16px; margin-top: 42px; }
.trust-line { width: 46px; height: 4px; background: var(--yellow); box-shadow: 0 3px 0 var(--black); }
.hero-trust div { display: grid; }
.hero-trust strong { font-size: 10px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.hero-trust small { color: #6e6e68; font-size: 10px; }
.hero-orbit { position: absolute; top: 50%; right: 0; width: 46%; height: 55%; transform: translateY(-50%); }
.orbit-badge {
  position: absolute; display: flex; align-items: center; gap: 9px; padding: 10px 13px;
  border: 2px solid var(--black); background: var(--yellow); color: var(--black);
  font-size: 8px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase;
  box-shadow: 4px 4px 0 var(--black); animation: badge-float 4s ease-in-out infinite;
}
.orbit-badge i { width: 7px; height: 7px; background: var(--black); }
.badge-top { top: 1%; right: 4%; }
.badge-bottom { right: 1%; bottom: 7%; background: var(--white); animation-delay: -2s; }
@keyframes badge-float { 50% { transform: translateY(-9px); } }
.hero-index { position: absolute; right: 0; bottom: 32px; display: flex; align-items: center; gap: 11px; color: #5c5c56; font-size: 8px; letter-spacing: .13em; text-transform: uppercase; }
.hero-index span { display: grid; padding: 3px 6px; background: var(--yellow); color: var(--black); font-weight: 900; }
.hero-index i { width: 45px; height: 2px; background: var(--black); }
.hero-marquee { position: absolute; z-index: 4; right: 0; bottom: 0; left: 0; overflow: hidden; border-top: 2px solid var(--black); background: var(--yellow); }
.marquee-track { display: flex; width: max-content; align-items: center; gap: 37px; padding: 17px 0; animation: marquee 24s linear infinite; }
.marquee-track span { color: var(--black); font-size: 9px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.marquee-track i { color: var(--black); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* About */
.about { background: var(--paper); }
.about-layout { display: grid; grid-template-columns: 1fr .82fr; gap: 10%; }
.about-heading h2, .section-top h2, .why-intro h2, .process-intro h2, .testimonial-heading h2, .contact-banner h2 {
  margin: 0; color: var(--black); font-size: clamp(44px,5.1vw,70px); font-weight: 720; letter-spacing: -.06em; line-height: 1.03;
}
.about-heading h2 em { display: inline; padding: 0 .08em; background: var(--yellow); color: var(--black); font-family: inherit; font-weight: 720; font-style: normal; }
.about-copy .lead { margin: 0; color: var(--black); font-size: 20px; font-weight: 550; line-height: 1.55; }
.about-copy > p:not(.lead) { margin: 25px 0; color: var(--gray); font-size: 14px; }
.text-link { display: inline-flex; align-items: center; gap: 11px; padding-bottom: 4px; border-bottom: 3px solid var(--yellow); color: var(--black); font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; transition: gap .2s; }
.text-link:hover { gap: 18px; }
.capability-rail { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 70px; padding-top: 26px; border-top: 2px solid var(--black); }
.capability-rail span { padding: 8px 12px; border: 1px solid #a8a8a0; border-radius: 30px; background: var(--white); color: #4b4b46; font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; transition: .2s; }
.capability-rail span:hover { border-color: var(--black); background: var(--yellow); color: var(--black); transform: translateY(-2px); }
.studio-stats { display: grid; grid-template-columns: 1fr 1fr 2fr; margin-top: 50px; border: 2px solid var(--black); background: var(--white); box-shadow: 9px 9px 0 var(--yellow); }
.stat-card { min-height: 170px; padding: 30px; border-right: 2px solid var(--black); }
.stat-card:last-child { border-right: 0; }
.stat-card strong { display: block; color: var(--black); font-size: 48px; font-weight: 800; letter-spacing: -.06em; }
.stat-card p { margin: 20px 0 0; color: #55554f; font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.stat-card-wide { display: flex; align-items: flex-end; justify-content: space-between; background: var(--yellow); }
.stat-card-wide p { color: var(--black); font-size: 16px; font-weight: 700; letter-spacing: -.01em; line-height: 1.45; text-transform: none; }
.stat-icon { align-self: flex-start; color: var(--black); font-size: 28px; }

/* Founder */
.founder-section { overflow: hidden; border-block: 2px solid var(--black); background: var(--yellow); }
.founder-glow { display: none; }
.founder-layout { display: grid; grid-template-columns: .85fr 1.1fr; align-items: center; gap: 10%; }
.founder-card { position: relative; min-height: 510px; overflow: hidden; border: 2px solid var(--black); background: var(--black); box-shadow: 13px 13px 0 var(--white); }
.founder-card::before { position: absolute; top: 23px; right: 23px; width: 43px; height: 43px; border-top: 3px solid var(--yellow); border-right: 3px solid var(--yellow); content: ""; }
.founder-card::after { position: absolute; top: 15%; left: 13%; width: 74%; aspect-ratio: 1; border: 2px solid rgba(255,213,0,.42); border-radius: 50%; content: ""; }
.founder-card-grid { position: absolute; inset: 0; opacity: .1; background-image: linear-gradient(var(--yellow) 1px,transparent 1px),linear-gradient(90deg,var(--yellow) 1px,transparent 1px); background-size: 46px 46px; }
.founder-monogram { position: absolute; z-index: 2; top: 41%; left: 50%; display: grid; width: 205px; aspect-ratio: 1; place-items: center; border: 3px solid var(--yellow); border-radius: 50%; background: #171717; transform: translate(-50%,-50%); }
.founder-monogram span { color: var(--yellow); font-size: 58px; font-weight: 850; letter-spacing: -.08em; }
.founder-monogram i { position: absolute; inset: -25px; border: 1px dashed var(--yellow); border-radius: 50%; animation: rotate 18s linear infinite; }
@keyframes rotate { to { transform: rotate(360deg); } }
.founder-meta { position: absolute; z-index: 2; right: 28px; bottom: 27px; left: 28px; display: flex; align-items: end; justify-content: space-between; padding-top: 18px; border-top: 1px solid #4b4b47; }
.founder-meta div { display: grid; gap: 3px; }
.founder-meta div span { color: var(--yellow); font-size: 8px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.founder-meta strong { color: var(--white); font-size: 16px; }
.founder-sign { color: var(--yellow); font-family: Georgia,serif; font-size: 24px; font-style: italic; }
.founder-copy .section-kicker { margin-bottom: 32px; }
.founder-copy blockquote { margin: 0 0 34px; color: var(--black); font-size: 30px; font-weight: 650; letter-spacing: -.03em; line-height: 1.4; }
.founder-copy h2 { margin: 0; color: var(--black); font-size: clamp(42px,4vw,58px); font-weight: 800; letter-spacing: -.06em; line-height: 1; }
.founder-copy h3 { margin: 11px 0 24px; color: var(--black); font-size: 10px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.founder-copy > p { margin: 0; color: #37372f; font-size: 15px; line-height: 1.8; }
.founder-values { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 28px; }
.founder-values span { display: flex; align-items: center; gap: 7px; color: var(--black); font-size: 9px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.founder-values i { width: 7px; height: 7px; background: var(--black); }

/* Services */
.services { background: var(--white); }
.section-top { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 62px; }
.section-top .section-kicker { margin-bottom: 27px; }
.section-top h2 .gold-text, .why-intro h2 .gold-text, .process-intro h2 .gold-text, .testimonial-heading h2 .gold-text, .contact-banner h2 .gold-text { position: relative; z-index: 0; }
.section-top h2 .gold-text::after, .process-intro h2 .gold-text::after, .testimonial-heading h2 .gold-text::after, .contact-banner h2 .gold-text::after { position: absolute; z-index: -1; right: -.05em; bottom: .04em; left: -.05em; height: .28em; background: var(--yellow); content: ""; }
.section-top > p { max-width: 350px; margin: 0 0 8px; color: var(--gray); font-size: 14px; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 2px solid var(--black); border-left: 2px solid var(--black); }
.service-card { position: relative; min-height: 350px; padding: 28px; overflow: hidden; border-right: 2px solid var(--black); border-bottom: 2px solid var(--black); background: var(--white); transition: transform .35s var(--ease),background .25s,box-shadow .35s; }
.service-card::after { position: absolute; right: -50px; bottom: -50px; width: 125px; height: 125px; border: 20px solid var(--yellow); border-radius: 50%; opacity: 0; content: ""; transition: .35s; }
.service-card:hover { z-index: 2; background: #fffef4; box-shadow: 10px 10px 0 var(--yellow); transform: translate(-5px,-5px); }
.service-card:hover::after { opacity: 1; transform: scale(1.1); }
.service-featured { grid-column: span 2; background: var(--yellow); }
.service-featured:hover { background: var(--yellow); box-shadow: 10px 10px 0 var(--black); }
.service-top { display: flex; justify-content: space-between; color: #565650; font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.service-top i { color: var(--black); font-size: 18px; font-style: normal; transition: transform .25s; }
.service-card:hover .service-top i { transform: translate(3px,-3px) rotate(8deg); }
.service-icon { display: grid; width: 58px; height: 58px; margin-top: 34px; place-items: center; border: 2px solid var(--black); background: var(--white); color: var(--black); transition: .3s; }
.service-card:hover .service-icon { background: var(--black); color: var(--yellow); transform: rotate(-4deg); }
.service-icon svg { width: 29px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
.service-card h3 { margin: 30px 0 11px; color: var(--black); font-size: 20px; font-weight: 750; letter-spacing: -.03em; }
.service-card p { max-width: 430px; margin: 0; color: #65655f; font-size: 13px; line-height: 1.65; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 22px; }
.service-tags span { padding: 5px 9px; border: 1px solid var(--black); border-radius: 20px; color: var(--black); font-size: 7px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }

/* Why */
.why-us { border-block: 2px solid var(--black); background: var(--black); color: var(--white); }
.why-layout { display: grid; grid-template-columns: .84fr 1.16fr; gap: 8%; }
.why-intro { position: sticky; top: 130px; align-self: start; }
.why-us .section-kicker { color: var(--white); }
.why-us .section-kicker span { color: var(--black); }
.why-us .section-kicker::after { background: var(--white); }
.why-intro h2 { color: var(--white); }
.why-intro h2 .gold-text { display: inline-block; padding: 0 .12em; background: var(--yellow); color: var(--black); }
.why-intro p { max-width: 420px; margin: 28px 0 0; color: #bfbfb7; font-size: 14px; }
.quality-seal { position: relative; display: grid; width: 112px; height: 112px; margin-top: 42px; place-items: center; border: 2px solid var(--yellow); border-radius: 50%; color: var(--yellow); }
.quality-seal::before { position: absolute; inset: 8px; border: 1px dashed var(--yellow); border-radius: 50%; content: ""; animation: rotate 18s linear infinite reverse; }
.quality-seal span { font-size: 7px; font-weight: 900; letter-spacing: .13em; line-height: 1.5; text-align: center; }
.quality-seal strong { position: absolute; font-size: 18px; }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid #4d4d48; border-left: 1px solid #4d4d48; }
.benefit { min-height: 195px; padding: 26px; border-right: 1px solid #4d4d48; border-bottom: 1px solid #4d4d48; transition: background .25s,color .25s; }
.benefit:hover { background: var(--yellow); color: var(--black); }
.benefit > span { color: var(--yellow); font-size: 8px; font-weight: 900; letter-spacing: .13em; }
.benefit:hover > span { color: var(--black); }
.benefit h3 { margin: 36px 0 7px; font-size: 16px; font-weight: 750; }
.benefit p { margin: 0; color: #aaa9a2; font-size: 12px; }
.benefit:hover p { color: #3b3b35; }

/* Work */
.work { background: var(--paper); }
.work-controls { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 8px; padding: 4px; border: 2px solid var(--black); background: var(--white); }
.work-controls button { padding: 8px 12px; border: 0; background: transparent; color: #55554f; cursor: pointer; font-size: 8px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.work-controls button.active, .work-controls button:hover { background: var(--yellow); color: var(--black); }
.work-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 68px 28px; }
.project { min-width: 0; transition: opacity .3s,transform .3s; }
.project.hidden-project { display: none; }
.project-visual { position: relative; height: 440px; overflow: hidden; border: 2px solid var(--black); background: #eee; box-shadow: 8px 8px 0 var(--yellow); transition: transform .35s var(--ease),box-shadow .35s; }
.project:hover .project-visual { transform: translate(-4px,-4px); box-shadow: 14px 14px 0 var(--yellow); }
.project-large .project-visual { height: 550px; }
.project-wide { grid-column: 1 / -1; }
.project-wide .project-visual { height: 490px; }
.project-meta { display: flex; justify-content: space-between; margin-top: 21px; }
.project-meta div > span, .project-meta > b { color: #666660; font-size: 8px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.project-meta h3 { margin: 6px 0 0; color: var(--black); font-size: 24px; font-weight: 750; letter-spacing: -.04em; }
.visual-nexa { display: grid; place-items: center; background: var(--yellow); }
.browser-frame { width: 84%; height: 78%; overflow: hidden; border: 2px solid var(--black); background: #f1eee5; box-shadow: 12px 12px 0 var(--black); transform: perspective(1000px) rotateY(-4deg) rotateX(2deg); transition: transform .55s var(--ease); }
.project:hover .browser-frame { transform: none; }
.browser-bar { display: flex; height: 30px; align-items: center; gap: 5px; padding: 0 12px; border-bottom: 1px solid #bcb7aa; color: #222; }
.browser-bar span { width: 5px; height: 5px; border-radius: 50%; background: #777; }
.browser-bar i { margin-left: auto; font-size: 6px; font-style: normal; letter-spacing: .13em; }
.nexa-page { position: relative; height: calc(100% - 30px); padding: 34px; overflow: hidden; color: #1b1a16; background: linear-gradient(90deg,rgba(240,237,228,.98) 0 47%,rgba(240,237,228,.12) 70%),linear-gradient(135deg,#6e6b61,#1a1c1b); }
.nexa-page::after { position: absolute; top: -12%; right: -9%; width: 55%; height: 125%; background: linear-gradient(108deg,transparent 0 22%,#aaa595 23% 42%,transparent 43%),linear-gradient(72deg,transparent 0 33%,#313430 34% 55%,transparent 56%); content: ""; }
.nexa-page small { font-size: 6px; letter-spacing: .17em; }
.nexa-page strong { position: relative; z-index: 1; display: block; margin-top: 29px; font-family: Georgia,serif; font-size: clamp(36px,4vw,59px); font-weight: 400; letter-spacing: -.06em; line-height: .83; }
.nexa-page strong em { color: #9b751b; font-weight: 400; }
.nexa-page > span { position: absolute; z-index: 1; bottom: 29px; left: 34px; padding-bottom: 2px; border-bottom: 1px solid #777; font-size: 7px; letter-spacing: .1em; text-transform: uppercase; }
.visual-velocity { display: grid; place-items: center; background: var(--black); }
.visual-velocity::before { position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(var(--yellow) 1px,transparent 1px),linear-gradient(90deg,var(--yellow) 1px,transparent 1px); background-size: 34px 34px; content: ""; }
.phone-card { position: relative; z-index: 1; width: 200px; height: 340px; padding: 21px; overflow: hidden; border: 2px solid var(--yellow); border-radius: 24px; background: #141514; box-shadow: 10px 10px 0 var(--yellow); color: var(--white); transform: rotate(4deg); transition: transform .55s var(--ease); }
.project:hover .phone-card { transform: rotate(0) translateY(-8px); }
.phone-card > span { display: grid; width: 26px; height: 26px; place-items: center; border: 1px solid var(--yellow); border-radius: 50%; color: var(--yellow); font-size: 8px; font-weight: 900; }
.phone-card div { margin-top: 57px; }
.phone-card small { display: block; color: #8b8b84; font-size: 6px; letter-spacing: .18em; }
.phone-card strong { color: var(--yellow); font-size: 47px; font-weight: 750; letter-spacing: -.07em; }
.phone-card sup { margin-left: 4px; color: #aaa; font-size: 8px; }
.phone-card i { position: absolute; right: 19px; bottom: 54px; left: 19px; height: 80px; background: var(--yellow); clip-path: polygon(0 81%,15% 57%,30% 65%,46% 28%,61% 46%,78% 16%,100% 0,100% 100%,0 100%); opacity: .65; }
.phone-card b { position: absolute; bottom: 20px; left: 21px; color: #aaa; font-size: 5px; letter-spacing: .14em; }
.visual-caption { position: absolute; right: 16px; bottom: 14px; color: var(--yellow); font-size: 6px; letter-spacing: .18em; }
.visual-luma { display: grid; place-items: center; background: var(--yellow); }
.luma-ring { position: relative; display: grid; width: 230px; aspect-ratio: 1; place-items: center; border: 2px solid var(--black); border-radius: 50%; }
.luma-ring i { position: absolute; inset: 13%; border: 1px solid var(--black); border-radius: 50%; transform: rotateX(72deg) rotateY(35deg); }
.luma-ring i:nth-child(2) { transform: rotateX(55deg) rotateY(65deg); }
.luma-ring i:nth-child(3) { transform: rotateX(78deg) rotateY(-45deg); }
.luma-ring strong { color: var(--black); font-family: Georgia,serif; font-size: 72px; font-weight: 700; transition: transform .45s var(--ease); }
.project:hover .luma-ring strong { transform: scale(1.13) rotate(-6deg); }
.visual-luma .visual-caption { color: var(--black); }
.visual-aurelia { display: flex; align-items: center; justify-content: space-between; padding: 7% 11%; color: #1f1d18; background: #f4ead3; }
.visual-aurelia::before { position: absolute; inset: 15px; border: 1px solid rgba(0,0,0,.2); content: ""; }
.aurelia-copy { position: relative; z-index: 1; display: grid; }
.aurelia-copy small { font-size: 7px; font-weight: 800; letter-spacing: .17em; }
.aurelia-copy strong { margin: 22px 0; font-family: Georgia,serif; font-size: clamp(58px,8vw,104px); font-weight: 400; letter-spacing: -.05em; }
.aurelia-copy span { width: max-content; padding-bottom: 3px; border-bottom: 1px solid; font-size: 7px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.aurelia-product { position: relative; display: grid; width: 240px; height: 310px; place-items: center; border-radius: 48% 48% 16% 16%; background: linear-gradient(120deg,#181713,#7c6743 55%,#151510 78%); box-shadow: 20px 35px 45px rgba(64,49,21,.25); transition: transform .55s var(--ease); }
.project:hover .aurelia-product { transform: translateY(-9px) rotate(2deg); }
.aurelia-product::before { position: absolute; top: -37px; width: 67px; height: 48px; border-radius: 6px 6px 0 0; background: linear-gradient(90deg,#8f754c,#27231b,#ac8f5e); content: ""; }
.aurelia-product i { position: absolute; inset: 24px; border: 1px solid rgba(240,210,143,.3); border-radius: 48% 48% 15% 15%; }
.aurelia-product span { color: #dcc691; font-family: Georgia,serif; font-size: 64px; }
.work-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 72px; padding-top: 28px; border-top: 2px solid var(--black); }
.work-footer p { margin: 0; color: #555; font-size: 13px; }

/* Process */
.process { border-block: 2px solid var(--black); background: var(--yellow); }
.process-intro { display: grid; grid-template-columns: 1fr 1fr; align-items: end; margin-bottom: 76px; }
.process-intro .section-kicker { grid-column: 1 / -1; }
.process-intro > p { max-width: 360px; justify-self: end; margin: 0 0 8px; color: #42423c; font-size: 14px; }
.process-list { display: grid; grid-template-columns: repeat(6,1fr); border-top: 2px solid var(--black); }
.process-step { position: relative; min-height: 335px; padding: 22px 19px; border-right: 2px solid var(--black); background: transparent; transition: background .25s,color .25s; }
.process-step:first-child { border-left: 2px solid var(--black); }
.process-step:hover { background: var(--black); color: var(--white); }
.process-step > span { font-size: 8px; font-weight: 900; letter-spacing: .13em; }
.process-dot { display: grid; width: 21px; height: 21px; margin: 31px 0 46px; place-items: center; border: 2px solid var(--black); background: var(--yellow); transform: rotate(45deg); }
.process-dot i { width: 5px; height: 5px; background: var(--black); }
.process-step:hover .process-dot { border-color: var(--yellow); background: var(--black); }
.process-step:hover .process-dot i { background: var(--yellow); }
.process-step h3 { margin: 0 0 14px; font-size: 17px; font-weight: 800; letter-spacing: -.02em; }
.process-step p { margin: 0; color: #4f4f48; font-size: 11px; line-height: 1.7; }
.process-step:hover p { color: #bdbdb5; }
.process-step b { position: absolute; bottom: 19px; font-size: 18px; font-weight: 500; transition: transform .2s; }
.process-step:hover b { color: var(--yellow); transform: translateX(5px); }

/* Testimonials */
.testimonials { background: var(--white); }
.testimonial-heading { margin-bottom: 58px; }
.testimonial-stage { position: relative; min-height: 435px; overflow: hidden; border: 2px solid var(--black); background: var(--paper); box-shadow: 12px 12px 0 var(--yellow); }
.testimonial-stage::before { position: absolute; top: 0; bottom: 0; left: 37%; width: 2px; background: var(--black); content: ""; }
.testimonial { position: absolute; inset: 0; display: grid; grid-template-columns: .5fr 1.3fr; align-items: center; gap: 7%; padding: 60px 7%; opacity: 0; pointer-events: none; transform: translateX(28px); transition: opacity .5s,transform .5s var(--ease); }
.testimonial.active { opacity: 1; pointer-events: auto; transform: none; }
.quote-mark { align-self: start; color: var(--yellow); font-family: Georgia,serif; font-size: 150px; line-height: .7; -webkit-text-stroke: 2px var(--black); }
.testimonial blockquote { grid-column: 2; margin: 0; color: var(--black); font-size: clamp(23px,2.8vw,38px); font-weight: 650; letter-spacing: -.035em; line-height: 1.4; }
.client { position: absolute; bottom: 50px; left: 7%; display: flex; align-items: center; gap: 13px; }
.client > span { display: grid; width: 40px; height: 40px; place-items: center; border: 2px solid var(--black); background: var(--yellow); color: var(--black); font-size: 9px; font-weight: 900; }
.client div { display: grid; }
.client strong { font-size: 12px; }
.client small { color: #666; font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.testimonial-controls { position: absolute; z-index: 3; right: 7%; bottom: 50px; display: flex; align-items: center; gap: 12px; }
.testimonial-controls button { display: grid; width: 36px; height: 36px; place-items: center; border: 2px solid var(--black); background: var(--white); color: var(--black); cursor: pointer; }
.testimonial-controls button:hover { background: var(--yellow); }
.testimonial-progress { width: 80px; height: 2px; background: #bbb; }
.testimonial-progress i { display: block; width: 33.333%; height: 2px; background: var(--black); transition: transform .4s var(--ease); }
.testimonial-controls > span { color: #666; font-size: 8px; }
.testimonial-controls > span b { color: var(--black); }

/* Contact */
.contact { padding-bottom: 70px; background: var(--paper); }
.contact-glow { display: none; }
.contact-banner { display: grid; grid-template-columns: .86fr 1.14fr; gap: 8%; padding: 70px; border: 2px solid var(--black); background: var(--black); color: var(--white); box-shadow: 14px 14px 0 var(--yellow); }
.contact-banner .section-kicker { color: var(--white); }
.contact-banner .section-kicker::after { background: var(--white); }
.contact-banner h2 { color: var(--white); }
.contact-banner-copy > p { max-width: 430px; margin: 25px 0 33px; color: #b9b9b2; font-size: 14px; }
.email-link { display: flex; width: max-content; max-width: 100%; gap: 11px; padding-bottom: 3px; border-bottom: 3px solid var(--yellow); color: var(--white); font-size: 13px; word-break: break-all; }
.whatsapp-link { display: flex; width: max-content; align-items: center; gap: 9px; margin-top: 19px; color: var(--yellow); font-size: 9px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.whatsapp-link svg { width: 20px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.contact-socials { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 24px; }
.contact-socials a { color: #888; font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-socials a:hover { color: var(--yellow); }
.contact-form { padding: 33px; border: 2px solid #4a4a45; background: #151515; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: block; margin-bottom: 19px; color: #b6b6ae; font-size: 8px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin-top: 8px; border: 0; border-bottom: 1px solid #555; border-radius: 0; outline: 0; background: transparent; color: var(--white); font-size: 13px; letter-spacing: normal; text-transform: none; transition: border-color .2s; }
.contact-form input, .contact-form select { height: 42px; }
.contact-form textarea { min-height: 88px; padding: 11px 0; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--yellow); }
.contact-form option { background: #151515; }
.contact-form ::placeholder { color: #777; }
.form-submit { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 8px; }
.form-submit small { max-width: 190px; color: #777; font-size: 8px; line-height: 1.5; }
.form-submit .button { flex: 0 0 auto; }
.form-status { margin: 13px 0 0; color: var(--yellow); font-size: 11px; }

/* Footer */
.site-footer { position: relative; z-index: 1; padding: 64px 0 26px; border-top: 2px solid var(--black); background: var(--yellow); color: var(--black); }
.footer-top { display: grid; grid-template-columns: 1fr 1.4fr 1fr; align-items: center; gap: 7%; padding-bottom: 50px; border-bottom: 2px solid var(--black); }
.footer-top > p { margin: 0; color: #3e3e38; font-size: 12px; }
.footer-availability { display: flex; align-items: center; justify-self: end; gap: 9px; font-size: 8px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.footer-availability i { width: 8px; height: 8px; background: var(--black); }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); width: 65%; margin: 48px 0 58px auto; }
.footer-links div { display: grid; align-content: start; gap: 7px; }
.footer-links h3 { margin: 0 0 12px; color: #595950; font-size: 8px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.footer-links a { width: max-content; color: var(--black); font-size: 11px; font-weight: 600; transition: transform .2s; }
.footer-links a:hover { transform: translateX(3px); }
.footer-socials { display: flex; gap: 6px; margin-bottom: 7px; }
.footer-links .footer-socials a { display: grid; width: 34px; height: 34px; place-items: center; border: 2px solid var(--black); background: var(--white); }
.footer-links .footer-socials a:hover { background: var(--black); color: var(--yellow); transform: translateY(-2px); }
.footer-socials svg { width: 15px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 22px; border-top: 2px solid var(--black); font-size: 8px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease),transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
body.loaded .hero-copy { animation: intro-up .8s var(--ease) both; }
@keyframes intro-up { from { opacity: 0; transform: translateY(24px); } }

@media (max-width:1100px) {
  .nav-wrap { gap: 18px; }
  .main-nav { gap: 19px; }
  .portal-link { display: none; }
  .hero h1 { font-size: clamp(58px,7vw,80px); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .service-featured { grid-column: span 2; }
  .process-list { grid-template-columns: repeat(3,1fr); }
  .process-step { border-bottom: 2px solid var(--black); }
  .contact-banner { padding: 52px; }
}

@media (max-width:860px) {
  .container { width: min(calc(100% - 36px),var(--container)); }
  .section { padding: 94px 0; }
  .main-nav, .nav-cta { display: none; }
  .menu-toggle { position: relative; z-index: 102; display: grid; width: 44px; height: 44px; place-content: center; gap: 7px; border: 2px solid var(--black); background: var(--yellow); cursor: pointer; box-shadow: 3px 3px 0 var(--black); }
  .menu-toggle > span:not(.sr-only) { display: block; width: 18px; height: 2px; background: var(--black); transition: .3s; }
  .menu-toggle[aria-expanded="true"] > span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }
  .main-nav.open { position: fixed; z-index: 101; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 20px; padding: 10vw; background: var(--yellow); }
  .main-nav.open a { color: var(--black); font-size: 34px; font-weight: 750; letter-spacing: -.05em; }
  .main-nav.open .mobile-portal-link { display: block; margin-top: 20px; padding: 10px 15px; border: 2px solid var(--black); background: var(--white); font-size: 14px; letter-spacing: .02em; }
  .hero { min-height: 1050px; }
  .hero::before { top: 118px; right: 4%; width: 70%; height: 380px; }
  .hero-backdrop { top: 104px; right: 7%; width: 70%; height: 380px; }
  .hero-grid { inset: 82px 0 0; }
  .hero-inner { min-height: 960px; align-items: flex-start; padding-top: 430px; padding-bottom: 125px; }
  .hero-copy { width: 91%; }
  .hero-orbit { top: 27%; right: 3%; width: 72%; height: 32%; }
  .badge-bottom { display: none; }
  .hero-index { display: none; }
  .about-layout, .founder-layout, .why-layout, .contact-banner { grid-template-columns: 1fr; }
  .about-copy { margin-top: 44px; }
  .studio-stats { grid-template-columns: 1fr 1fr; }
  .stat-card-wide { grid-column: 1 / -1; border-top: 2px solid var(--black); }
  .founder-layout { gap: 68px; }
  .founder-card { width: min(100%,550px); min-height: 490px; }
  .section-top { align-items: flex-start; flex-direction: column; gap: 25px; }
  .why-layout { gap: 65px; }
  .why-intro { position: static; }
  .work-grid { gap: 54px 22px; }
  .project-visual, .project-large .project-visual, .project-wide .project-visual { height: 410px; }
  .process-intro { grid-template-columns: 1fr; gap: 24px; }
  .process-intro > p { justify-self: start; }
  .testimonial-stage::before { left: 30%; }
  .testimonial { grid-template-columns: .35fr 1.5fr; }
  .contact-banner { gap: 62px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-availability { grid-column: 2; justify-self: start; }
  .footer-links { width: 82%; }
}

@media (max-width:620px) {
  .container { width: min(calc(100% - 28px),var(--container)); }
  .section { padding: 78px 0; }
  .nav-wrap { height: 70px; }
  .brand-mark { width: 35px; height: 35px; }
  .hero { min-height: 1035px; padding-top: 70px; }
  .hero::before { top: 91px; right: 3%; width: 84%; height: 320px; transform: translate(9px,9px); }
  .hero-backdrop { top: 82px; right: 6%; width: 84%; height: 320px; }
  .hero-inner { min-height: 965px; padding-top: 375px; padding-bottom: 110px; }
  .hero-copy { width: 100%; }
  .eyebrow { margin-bottom: 17px; font-size: 8px; }
  .hero h1 { font-size: clamp(48px,14.8vw,64px); line-height: .96; }
  .hero-copy > p { margin-top: 21px; font-size: 14px; line-height: 1.65; }
  .hero-actions { align-items: stretch; flex-direction: column; width: min(100%,330px); margin-top: 27px; }
  .button { min-height: 50px; }
  .hero-trust { margin-top: 29px; }
  .hero-orbit { top: 20%; right: 1%; width: 89%; }
  .orbit-badge { font-size: 7px; }
  .badge-top { top: 2%; right: 1%; }
  .about-heading h2, .section-top h2, .why-intro h2, .process-intro h2, .testimonial-heading h2, .contact-banner h2 { font-size: clamp(39px,12vw,51px); }
  .about-copy .lead { font-size: 17px; }
  .capability-rail { margin-top: 50px; }
  .studio-stats { grid-template-columns: 1fr; box-shadow: 6px 6px 0 var(--yellow); }
  .stat-card { min-height: 142px; border-right: 0; border-bottom: 2px solid var(--black); }
  .stat-card-wide { grid-column: auto; border-top: 0; }
  .founder-card { min-height: 425px; box-shadow: 8px 8px 0 var(--white); }
  .founder-monogram { width: 155px; }
  .founder-monogram span { font-size: 44px; }
  .founder-copy blockquote { font-size: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-featured { grid-column: auto; }
  .service-card { min-height: 320px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit { min-height: 160px; }
  .benefit h3 { margin-top: 26px; }
  .work-grid { grid-template-columns: 1fr; }
  .project-wide { grid-column: auto; }
  .project-visual, .project-large .project-visual, .project-wide .project-visual { height: 380px; box-shadow: 6px 6px 0 var(--yellow); }
  .browser-frame { width: 90%; height: 73%; }
  .nexa-page { padding: 24px; }
  .nexa-page > span { left: 24px; }
  .aurelia-product { width: 128px; height: 205px; }
  .aurelia-product::before { top: -27px; width: 44px; height: 33px; }
  .aurelia-copy strong { font-size: 44px; }
  .work-footer { align-items: flex-start; flex-direction: column; gap: 17px; }
  .process-list { grid-template-columns: 1fr 1fr; }
  .process-step { min-height: 300px; }
  .testimonial-stage { min-height: 555px; box-shadow: 7px 7px 0 var(--yellow); }
  .testimonial-stage::before { display: none; }
  .testimonial { display: block; padding: 46px 28px 115px; }
  .quote-mark { height: 85px; font-size: 118px; }
  .testimonial blockquote { font-size: 22px; }
  .client { bottom: 59px; left: 28px; }
  .testimonial-controls { right: 27px; bottom: 16px; left: 27px; justify-content: flex-end; }
  .testimonial-progress { width: 52px; }
  .contact { padding-bottom: 42px; }
  .contact-banner { padding: 40px 21px; gap: 48px; box-shadow: 7px 7px 0 var(--yellow); }
  .contact-form { padding: 25px 19px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-submit { align-items: stretch; flex-direction: column; }
  .form-submit .button { width: 100%; }
  .footer-top { grid-template-columns: 1fr; gap: 27px; }
  .footer-availability { grid-column: auto; }
  .footer-links { grid-template-columns: 1fr 1fr; width: 100%; gap: 42px 18px; }
  .footer-links div:last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 11px; }
}

@media (max-width:390px) {
  .hero h1 { font-size: 46px; }
  .process-list { grid-template-columns: 1fr; }
  .process-step { min-height: 240px; }
  .process-dot { margin: 19px 0 28px; }
  .testimonial-stage { min-height: 600px; }
  .project-visual, .project-large .project-visual, .project-wide .project-visual { height: 345px; }
  .visual-aurelia { padding-inline: 7%; }
  .aurelia-product { width: 106px; height: 175px; }
  .aurelia-copy strong { font-size: 37px; }
}

@media (prefers-reduced-motion:reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
