@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg: #faf8f5;
  --bg-soft: #f3eee8;
  --surface: rgba(255,255,255,.58);
  --surface-strong: rgba(255,255,255,.82);
  --ink: #171727;
  --muted: #6d6a79;
  --line: rgba(23,23,39,.1);
  --line-strong: rgba(23,23,39,.17);
  --orange: #ff6b35;
  --amber: #f7931e;
  --violet: #8d63ff;
  --cyan: #62d8e6;
  --shadow: 0 24px 70px rgba(28,21,29,.1);
  --radius: 28px;
  --max: 1240px;
}

html.dark {
  --bg: #0e0d16;
  --bg-soft: #16131d;
  --surface: rgba(255,255,255,.055);
  --surface-strong: rgba(25,22,33,.86);
  --ink: #f7f3ee;
  --muted: #aaa5b8;
  --line: rgba(255,255,255,.09);
  --line-strong: rgba(255,255,255,.16);
  --shadow: 0 24px 80px rgba(0,0,0,.35);
}

* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: Manrope, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.5;
  transition: background .35s ease, color .35s ease;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .32;
  background-image: linear-gradient(rgba(255,107,53,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,107,53,.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
  z-index: -2;
}
::selection { background: rgba(255,107,53,.25); }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.progress-bar { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--orange), var(--amber)); z-index: 200; }
.container { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--orange); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { content: ''; width: 28px; height: 2px; border-radius: 99px; background: currentColor; }
.display { font-family: 'Space Grotesk', sans-serif; font-size: clamp(3rem, 7.2vw, 7rem); line-height: .96; letter-spacing: -.075em; font-weight: 700; }
.title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.2rem, 4vw, 4.8rem); line-height: 1; letter-spacing: -.06em; font-weight: 700; }
.gradient-text { background: linear-gradient(110deg, var(--orange), var(--amber) 48%, #ffd36b); background-clip: text; -webkit-background-clip: text; color: transparent; }
.muted { color: var(--muted); }
.lead { max-width: 610px; color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.2rem); line-height: 1.8; }

.site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 100; padding: 20px 0; transition: padding .3s, background .3s, box-shadow .3s; }
.site-header.scrolled { padding: 12px 0; background: color-mix(in srgb, var(--bg) 76%, transparent); backdrop-filter: blur(20px); box-shadow: 0 1px 0 var(--line); }
.nav-shell { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.15rem; white-space: nowrap; }
.brand-mark { position: relative; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 13px; color: white; background: linear-gradient(135deg, var(--orange), var(--amber)); box-shadow: 0 10px 28px rgba(255,107,53,.25); overflow: hidden; }
.brand-mark::before, .brand-mark::after { content: ''; position: absolute; border: 1px solid rgba(255,255,255,.8); border-radius: 50%; transform: rotate(-30deg); }
.brand-mark::before { width: 34px; height: 14px; }
.brand-mark::after { width: 14px; height: 34px; }
.brand-mark span { position: relative; z-index: 1; font-size: 15px; }
.brand em { color: var(--orange); font-style: normal; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { position: relative; color: var(--muted); font-size: .82rem; font-weight: 700; transition: color .25s; }
.nav-links a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -9px; height: 2px; transform: scaleX(0); transform-origin: left; background: var(--orange); transition: transform .25s; }
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.theme-toggle, .menu-toggle { display: grid; place-items: center; width: 42px; height: 42px; padding: 0; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: var(--surface); transition: transform .25s, border-color .25s; }
.theme-toggle:hover, .menu-toggle:hover { transform: rotate(10deg) scale(1.06); border-color: var(--orange); }
.menu-toggle { display: none; border-radius: 12px; font-size: 1.2rem; }
.mobile-nav { display: none; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 52px; padding: 0 24px; border: 1px solid transparent; border-radius: 999px; font-size: .82rem; font-weight: 800; transition: transform .3s, box-shadow .3s, border-color .3s, background .3s; }
.btn-primary { color: white; background: linear-gradient(120deg, var(--orange), var(--amber)); box-shadow: 0 16px 34px rgba(255,107,53,.22); }
.btn-primary:hover { transform: translateY(-4px); box-shadow: 0 22px 44px rgba(255,107,53,.32); }
.btn-ghost { border-color: var(--line-strong); color: var(--ink); background: var(--surface); backdrop-filter: blur(12px); }
.btn-ghost:hover { transform: translateY(-4px); border-color: var(--orange); color: var(--orange); }
.btn-small { min-height: 42px; padding: 0 17px; font-size: .74rem; }

.hero { position: relative; min-height: 890px; display: grid; align-items: center; padding: 160px 0 110px; isolation: isolate; }
.hero::before { content: ''; position: absolute; inset: 14% -18% auto; height: 550px; background: radial-gradient(circle, rgba(255,107,53,.17), transparent 64%); filter: blur(18px); z-index: -1; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(390px, .98fr); align-items: center; gap: 70px; }
.hero h1 { max-width: 780px; margin: 24px 0; }
.hero-copy .lead { margin-top: 26px; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-proof { display: flex; align-items: center; gap: 16px; margin-top: 48px; }
.avatar-stack { display: flex; }
.avatar-stack span { display: grid; place-items: center; width: 30px; height: 30px; margin-left: -7px; border: 2px solid var(--bg); border-radius: 50%; color: white; background: linear-gradient(135deg, #2a263b, var(--orange)); font-size: .6rem; font-weight: 800; }
.avatar-stack span:first-child { margin-left: 0; background: linear-gradient(135deg, var(--amber), var(--orange)); }
.hero-proof small { color: var(--muted); font-size: .73rem; }
.hero-proof strong { display: block; color: var(--ink); font-size: .8rem; }

.scene-wrap { perspective: 1100px; min-height: 560px; display: grid; place-items: center; }
.scene { position: relative; width: min(100%, 520px); height: 520px; transform-style: preserve-3d; transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.scene::before { content: ''; position: absolute; inset: 14%; border: 1px solid rgba(255,107,53,.13); border-radius: 50%; transform: rotateX(68deg) translateZ(-70px); box-shadow: 0 0 80px rgba(255,107,53,.18); }
.scene::after { content: ''; position: absolute; inset: 20%; border-radius: 50%; background: radial-gradient(circle, rgba(255,107,53,.16), transparent 67%); filter: blur(22px); transform: translateZ(-80px); }
.planet { position: absolute; inset: 28% 28%; transform-style: preserve-3d; border-radius: 50%; background: radial-gradient(circle at 30% 25%, #ffd89c, var(--orange) 28%, #bf3c24 62%, #4f1e2c 100%); box-shadow: inset -24px -18px 32px rgba(25,13,23,.43), inset 10px 8px 22px rgba(255,255,255,.24), 0 0 75px rgba(255,107,53,.32); animation: floatPlanet 7s ease-in-out infinite; }
.planet::before { content: ''; position: absolute; inset: 13% -22%; border: 1px solid rgba(255,218,159,.5); border-left-color: transparent; border-right-color: transparent; border-radius: 50%; transform: rotate(-25deg) rotateX(68deg); }
.planet::after { content: ''; position: absolute; inset: 9%; border-radius: inherit; background: repeating-linear-gradient(132deg, transparent 0 24px, rgba(255,255,255,.06) 26px 30px, transparent 32px 54px); mix-blend-mode: screen; }
.orbit { position: absolute; inset: 8%; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; transform: rotateX(70deg) rotateZ(18deg); animation: orbitSpin 18s linear infinite; }
.orbit:nth-of-type(2) { inset: 18%; transform: rotateX(68deg) rotateZ(-28deg); animation-duration: 13s; animation-direction: reverse; border-color: rgba(247,147,30,.35); }
.orbit:nth-of-type(3) { inset: 30%; transform: rotateY(70deg) rotateZ(18deg); animation-duration: 9s; border-color: rgba(98,216,230,.22); }
.orbit i { position: absolute; top: -5px; left: 50%; width: 10px; height: 10px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 24px var(--amber); }
.orbit:nth-of-type(3) i { background: var(--cyan); box-shadow: 0 0 24px var(--cyan); }
.scene-card { position: absolute; display: flex; align-items: center; gap: 11px; min-width: 165px; padding: 13px 16px; border: 1px solid rgba(255,255,255,.19); border-radius: 17px; color: white; background: rgba(20,18,29,.58); box-shadow: 0 18px 38px rgba(0,0,0,.18); backdrop-filter: blur(18px); transform: translateZ(120px); }
.scene-card small { display: block; color: #aaa5b8; font-size: .62rem; }
.scene-card strong { font-size: .78rem; }
.scene-card b { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 10px; color: white; background: linear-gradient(135deg, var(--orange), var(--amber)); font-size: .72rem; }
.scene-card.one { top: 8%; right: 0; animation: floatCard 5s ease-in-out infinite; }
.scene-card.two { bottom: 12%; left: 0; animation: floatCard 6s .7s ease-in-out infinite reverse; }
.scene-card.three { right: -1%; bottom: 28%; animation: floatCard 5.6s 1.3s ease-in-out infinite; }
.scene-label { position: absolute; left: 50%; bottom: -2px; transform: translateX(-50%); color: var(--muted); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; white-space: nowrap; }

.signal-strip { padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; background: linear-gradient(90deg, transparent, rgba(255,107,53,.07), transparent); }
.signal-track { display: flex; justify-content: center; flex-wrap: wrap; gap: 26px 42px; color: var(--muted); font-family: 'Space Grotesk', sans-serif; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.signal-track span::before { content: '✦'; margin-right: 12px; color: var(--orange); }

.section { position: relative; padding: 126px 0; }
.section-soft { background: var(--bg-soft); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.section-heading .lead { max-width: 480px; }
.section-heading.center { display: block; text-align: center; }
.section-heading.center .lead { margin: 22px auto 0; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 54px; }
.card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: 0 1px 0 rgba(255,255,255,.35) inset; backdrop-filter: blur(16px); }
.tilt-card { transform-style: preserve-3d; transition: transform .2s ease, border-color .3s, box-shadow .3s; }
.tilt-card:hover { border-color: rgba(255,107,53,.38); box-shadow: var(--shadow); }
.service-card { min-height: 300px; padding: 30px; }
.service-card::before { content: ''; position: absolute; width: 180px; height: 180px; top: -88px; right: -72px; border-radius: 50%; background: radial-gradient(circle, rgba(255,107,53,.22), transparent 67%); }
.service-number { color: rgba(255,107,53,.62); font-family: 'Space Grotesk', sans-serif; font-size: .76rem; font-weight: 700; }
.service-icon { display: grid; place-items: center; width: 54px; height: 54px; margin: 30px 0 26px; border: 1px solid rgba(255,107,53,.23); border-radius: 18px; color: var(--orange); background: rgba(255,107,53,.09); font-size: 1.4rem; }
.service-card h3 { max-width: 240px; font-family: 'Space Grotesk', sans-serif; font-size: 1.35rem; line-height: 1.05; letter-spacing: -.04em; }
.service-card p { margin-top: 15px; color: var(--muted); font-size: .87rem; line-height: 1.7; }
.service-link { position: absolute; right: 25px; bottom: 25px; color: var(--orange); font-size: .8rem; font-weight: 800; }

.work-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 20px; margin-top: 54px; }
.work-card { min-height: 420px; padding: 0; }
.work-card:nth-child(3) { min-height: 280px; }
.work-visual { position: relative; min-height: 270px; overflow: hidden; background: #1c1620; }
.work-card:first-child .work-visual { min-height: 420px; }
.work-visual::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 22% 35%, rgba(255,107,53,.9), transparent 17%), radial-gradient(circle at 78% 66%, rgba(98,216,230,.58), transparent 18%), linear-gradient(130deg, #160f1e 20%, #3a1d2c 57%, #17222c); }
.work-visual::after { content: ''; position: absolute; inset: 13%; border: 1px solid rgba(255,255,255,.22); transform: perspective(400px) rotateX(58deg) rotateZ(-7deg); box-shadow: 0 0 0 12px rgba(255,255,255,.03), 0 0 90px rgba(255,107,53,.25); }
.work-card:nth-child(2) .work-visual::before { background: radial-gradient(circle at 25% 30%, rgba(247,147,30,.95), transparent 16%), linear-gradient(130deg, #161321, #3b1b32 56%, #34211b); }
.work-card:nth-child(3) .work-visual::before { background: radial-gradient(circle at 72% 40%, rgba(98,216,230,.7), transparent 20%), linear-gradient(130deg, #10141c, #2b1a2a 58%, #17121d); }
.visual-label { position: absolute; left: 24px; top: 22px; z-index: 1; color: rgba(255,255,255,.72); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; }
.visual-orb { position: absolute; right: 18%; bottom: 18%; z-index: 1; width: 110px; height: 110px; border-radius: 50%; background: radial-gradient(circle at 33% 28%, #ffe3ad, var(--orange) 30%, #502039 78%); box-shadow: 0 0 65px rgba(255,107,53,.45); }
.work-info { display: flex; align-items: end; justify-content: space-between; gap: 20px; padding: 23px 25px; }
.work-info .tag { color: var(--orange); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.work-info h3 { margin-top: 7px; font-family: 'Space Grotesk', sans-serif; font-size: 1.35rem; letter-spacing: -.04em; }
.work-info p { margin-top: 6px; color: var(--muted); font-size: .78rem; }
.arrow-circle { display: grid; flex: 0 0 auto; place-items: center; width: 38px; height: 38px; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--orange); }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 52px; }
.process-card { padding: 26px; border-top: 1px solid var(--line-strong); }
.process-card b { color: var(--orange); font-family: 'Space Grotesk', sans-serif; font-size: .76rem; }
.process-card h3 { margin-top: 40px; font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; letter-spacing: -.03em; }
.process-card p { margin-top: 10px; color: var(--muted); font-size: .8rem; line-height: 1.7; }

.cta-panel { position: relative; overflow: hidden; padding: 80px 64px; border-radius: 38px; color: white; background: linear-gradient(120deg, #e5542c, var(--orange) 50%, #dc8a20); box-shadow: 0 30px 70px rgba(255,107,53,.2); }
.cta-panel::before { content: ''; position: absolute; width: 500px; height: 500px; right: -130px; top: -210px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; box-shadow: 0 0 0 30px rgba(255,255,255,.06), 0 0 0 80px rgba(255,255,255,.04); }
.cta-panel::after { content: '✦'; position: absolute; right: 24%; bottom: 20%; color: rgba(255,255,255,.55); font-size: 1.4rem; }
.cta-panel h2 { max-width: 670px; font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.1rem, 4vw, 4rem); line-height: .98; letter-spacing: -.06em; }
.cta-panel p { max-width: 560px; margin-top: 18px; color: rgba(255,255,255,.8); }
.cta-panel .btn { margin-top: 30px; color: var(--orange); background: white; }

.page-hero { padding: 190px 0 105px; background: radial-gradient(circle at 75% 16%, rgba(255,107,53,.15), transparent 34%); }
.page-hero .lead { margin-top: 24px; }
.page-hero .eyebrow { margin-bottom: 24px; }
.page-hero .hero-orbit { position: absolute; right: 8%; top: 150px; width: 240px; height: 240px; border: 1px solid rgba(255,107,53,.24); border-radius: 50%; transform: rotateX(70deg) rotateZ(20deg); }
.page-hero .hero-orbit::after { content: ''; position: absolute; top: 50%; left: -7px; width: 14px; height: 14px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 30px var(--orange); }

.filter-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 48px 0 28px; }
.filter-btn { padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: var(--surface); font-size: .75rem; font-weight: 800; transition: all .25s; }
.filter-btn:hover, .filter-btn.active { border-color: var(--orange); color: white; background: var(--orange); }
.projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.project-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); transition: transform .3s, box-shadow .3s, border-color .3s; cursor: pointer; }
.project-card:hover { transform: translateY(-7px); border-color: rgba(255,107,53,.38); box-shadow: var(--shadow); }
.project-art { position: relative; display: grid; place-items: center; min-height: 300px; overflow: hidden; color: white; background: #1b1522; }
.project-art::before { content: ''; position: absolute; inset: 0; background: var(--project-bg); }
.project-art::after { content: ''; position: absolute; inset: 15%; border: 1px solid rgba(255,255,255,.23); transform: perspective(400px) rotateX(58deg) rotateZ(-8deg); box-shadow: 0 0 80px rgba(255,107,53,.25); }
.project-glyph { position: relative; z-index: 1; width: 130px; height: 130px; border-radius: 42% 58% 60% 40%; background: radial-gradient(circle at 30% 25%, #ffe1a2, var(--orange) 32%, #4e2037 78%); box-shadow: 0 0 70px rgba(255,107,53,.42); transform: rotate(-17deg); }
.project-glyph::after { content: ''; position: absolute; inset: -22px -30px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; transform: rotate(22deg) rotateX(68deg); }
.project-meta { padding: 23px 25px 25px; }
.project-meta .tag { color: var(--orange); font-size: .68rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.project-meta h3 { margin-top: 7px; font-family: 'Space Grotesk', sans-serif; font-size: 1.3rem; letter-spacing: -.04em; }
.project-meta p { margin-top: 8px; color: var(--muted); font-size: .8rem; }
.project-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.project-tags span { padding: 5px 9px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: .65rem; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.about-copy p { margin-top: 18px; color: var(--muted); line-height: 1.85; }
.stats-row { display: flex; flex-wrap: wrap; gap: 40px; margin-top: 34px; }
.stat strong { display: block; color: var(--orange); font-family: 'Space Grotesk', sans-serif; font-size: 2.2rem; letter-spacing: -.07em; }
.stat span { display: block; margin-top: 3px; color: var(--muted); font-size: .72rem; }
.about-cube { position: relative; display: grid; place-items: center; min-height: 420px; perspective: 900px; }
.cube { position: relative; width: 210px; height: 210px; transform-style: preserve-3d; transform: rotateX(-18deg) rotateY(-32deg) rotateZ(12deg); animation: cubeFloat 8s ease-in-out infinite; }
.cube-face { position: absolute; inset: 0; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.3); color: white; background: linear-gradient(135deg, rgba(255,107,53,.9), rgba(101,35,53,.9)); box-shadow: inset 0 0 60px rgba(255,255,255,.1); font-family: 'Space Grotesk', sans-serif; font-size: 3.4rem; font-weight: 700; }
.cube-face.front { transform: translateZ(105px); }
.cube-face.back { transform: rotateY(180deg) translateZ(105px); }
.cube-face.right { transform: rotateY(90deg) translateZ(105px); background: linear-gradient(135deg, #2e3045, #151522); }
.cube-face.left { transform: rotateY(-90deg) translateZ(105px); background: linear-gradient(135deg, #efa02f, #5b2537); }
.cube-face.top { transform: rotateX(90deg) translateZ(105px); background: linear-gradient(135deg, #ffbe61, #df542f); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(105px); background: #211a2b; }
.cube-shadow { position: absolute; width: 280px; height: 70px; bottom: 38px; border-radius: 50%; background: rgba(255,107,53,.22); filter: blur(25px); transform: rotateX(76deg); }
.timeline { position: relative; display: grid; gap: 0; max-width: 800px; margin: 55px auto 0; }
.timeline::before { content: ''; position: absolute; left: 77px; top: 0; bottom: 0; width: 1px; background: var(--line-strong); }
.timeline-item { display: grid; grid-template-columns: 150px 1fr; gap: 25px; padding: 0 0 38px; }
.timeline-year { color: var(--orange); font-family: 'Space Grotesk', sans-serif; font-size: .8rem; font-weight: 700; }
.timeline-dot { position: absolute; left: 72px; margin-top: 2px; width: 11px; height: 11px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 7px var(--bg-soft); }
.timeline-content { padding: 0 0 0 28px; }
.timeline-content h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; }
.timeline-content p { margin-top: 8px; color: var(--muted); font-size: .82rem; }

.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 20px; margin-top: 55px; }
.form-card, .info-card { padding: 32px; }
.form-card h2, .info-card h2 { font-family: 'Space Grotesk', sans-serif; font-size: 1.45rem; letter-spacing: -.04em; }
.form-stack { display: grid; gap: 14px; margin-top: 25px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: grid; gap: 7px; color: var(--muted); font-size: .7rem; font-weight: 700; }
input, textarea, select { width: 100%; border: 1px solid var(--line); border-radius: 14px; outline: none; color: var(--ink); background: color-mix(in srgb, var(--bg) 75%, transparent); padding: 14px 16px; transition: border-color .25s, box-shadow .25s; }
input:focus, textarea:focus, select:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,107,53,.1); }
textarea { min-height: 145px; resize: vertical; }
.form-card .btn { width: 100%; margin-top: 6px; }
.success-message { display: none; margin-top: 14px; padding: 13px 15px; border-radius: 12px; color: #26ae84; background: rgba(38,174,132,.1); font-size: .76rem; font-weight: 700; }
.success-message.show { display: block; }
.info-list { display: grid; gap: 12px; margin-top: 24px; }
.info-item { display: flex; align-items: center; gap: 14px; padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.info-icon { display: grid; place-items: center; flex: 0 0 auto; width: 40px; height: 40px; border-radius: 12px; color: var(--orange); background: rgba(255,107,53,.1); }
.info-item small { display: block; color: var(--muted); font-size: .66rem; }
.info-item strong { display: block; margin-top: 2px; font-size: .78rem; }
.availability { display: flex; align-items: center; gap: 9px; margin-top: 24px; padding: 14px 16px; border-radius: 16px; color: var(--muted); background: rgba(255,107,53,.06); font-size: .74rem; }
.availability i { width: 8px; height: 8px; border-radius: 50%; background: #33c58e; box-shadow: 0 0 12px #33c58e; }

.site-footer { padding: 70px 0 28px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.6fr .8fr .8fr .9fr; gap: 35px; }
.footer-brand p { max-width: 320px; margin-top: 15px; color: var(--muted); font-size: .78rem; line-height: 1.8; }
.footer-title { margin-bottom: 14px; font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { color: var(--muted); font-size: .76rem; transition: color .2s; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 60px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: .68rem; }
.back-top { position: fixed; right: 24px; bottom: 24px; display: grid; place-items: center; width: 44px; height: 44px; border: 0; border-radius: 50%; color: white; background: var(--orange); box-shadow: 0 12px 30px rgba(255,107,53,.3); opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity .25s, transform .25s; z-index: 80; }
.back-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

.modal { position: fixed; inset: 0; display: none; place-items: center; padding: 22px; background: rgba(9,8,14,.72); backdrop-filter: blur(12px); z-index: 160; }
.modal.open { display: grid; }
.modal-box { position: relative; width: min(560px, 100%); padding: 34px; border: 1px solid rgba(255,255,255,.13); border-radius: 25px; color: var(--ink); background: var(--surface-strong); box-shadow: 0 30px 80px rgba(0,0,0,.3); }
.modal-close { position: absolute; top: 14px; right: 14px; display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: var(--surface); }
.modal-art { display: grid; place-items: center; height: 180px; margin-bottom: 22px; border-radius: 18px; background: var(--project-bg); }
.modal-art .project-glyph { width: 90px; height: 90px; }
.modal-box .tag { color: var(--orange); font-size: .68rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.modal-box h2 { margin-top: 7px; font-family: 'Space Grotesk', sans-serif; font-size: 1.8rem; letter-spacing: -.05em; }
.modal-box p { margin-top: 12px; color: var(--muted); font-size: .86rem; line-height: 1.8; }

[data-reveal] { opacity: 0; transform: translateY(25px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }
@keyframes floatPlanet { 0%, 100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-13px) rotate(7deg); } }
@keyframes orbitSpin { to { transform: rotateX(70deg) rotateZ(380deg); } }
@keyframes floatCard { 0%, 100% { transform: translateZ(120px) translateY(0); } 50% { transform: translateZ(120px) translateY(-10px); } }
@keyframes cubeFloat { 0%,100% { transform: rotateX(-18deg) rotateY(-32deg) rotateZ(12deg) translateY(0); } 50% { transform: rotateX(-13deg) rotateY(-22deg) rotateZ(12deg) translateY(-16px); } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 980px) {
  .nav-links { gap: 18px; }
  .hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-copy { text-align: center; }
  .hero-copy .lead { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-proof { justify-content: center; }
  .scene-wrap { min-height: 480px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid, .contact-grid, .about-grid { grid-template-columns: 1fr; }
  .about-cube { order: -1; min-height: 360px; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .container { width: min(var(--max), calc(100% - 32px)); }
  .site-header { padding: 14px 0; }
  .nav-links, .nav-actions .btn { display: none; }
  .menu-toggle { display: grid; }
  .mobile-nav { display: grid; gap: 5px; max-height: 0; overflow: hidden; margin-top: 12px; border: 0 solid var(--line); border-radius: 18px; background: var(--surface-strong); backdrop-filter: blur(20px); transition: max-height .35s, padding .35s, border-width .35s; }
  .mobile-nav.open { max-height: 400px; padding: 10px; border-width: 1px; }
  .mobile-nav a { padding: 12px 14px; border-radius: 12px; color: var(--muted); font-size: .84rem; font-weight: 700; }
  .mobile-nav a:hover, .mobile-nav a.active { color: var(--orange); background: rgba(255,107,53,.08); }
  .hero { min-height: auto; padding: 150px 0 85px; }
  .display { font-size: clamp(3.2rem, 15vw, 5rem); }
  .scene-wrap { min-height: 390px; }
  .scene { width: 340px; height: 340px; }
  .scene-card { min-width: 132px; padding: 10px 11px; }
  .scene-card.one { right: -10px; }
  .scene-card.two { left: -13px; }
  .scene-card.three { right: -13px; }
  .section { padding: 85px 0; }
  .section-heading { display: block; }
  .section-heading .lead { margin-top: 18px; }
  .card-grid, .projects-grid, .process-grid { grid-template-columns: 1fr; }
  .work-grid { gap: 16px; }
  .work-card:first-child .work-visual { min-height: 300px; }
  .cta-panel { padding: 52px 28px; border-radius: 26px; }
  .page-hero { padding: 150px 0 85px; }
  .page-hero .hero-orbit { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-bottom: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
