:root {
  --bg: #000000;
  --surface: rgba(20, 20, 20, .72);
  --surface-solid: #151515;
  --text: #f9f9f9;
  --muted: #a7a7a7;
  --orange: #e85002;
  --red: #c10801;
  --orange-light: #f16001;
  --sand: #d9c3ab;
  --gray: #646464;
  --light-gray: #a7a7a7;
  --dark-gray: #333333;
  --border: rgba(249, 249, 249, .12);
  --glass: rgba(255, 255, 255, .055);
  --glass-border: rgba(249, 249, 249, .24);
  --radius: 18px;
  --container: 1180px;
  --display: "Anton", Impact, sans-serif;
  --body: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { max-width: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  max-width: 100%;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 10%, rgba(193, 8, 1, .16), transparent 27%),
    radial-gradient(circle at 88% 16%, rgba(232, 80, 2, .12), transparent 25%),
    radial-gradient(circle at 52% 74%, rgba(241, 96, 1, .06), transparent 24%);
  z-index: -2;
}
.site-noise {
  position: fixed; inset: 0; z-index: 10; pointer-events: none; opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
.section { width: min(100% - 40px, var(--container)); margin-inline: auto; position: relative; }
.eyebrow { display: block; margin-bottom: 18px; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.accent { color: var(--orange); }
.orange { color: var(--orange); }

/* Shared glass reflection */
.glass-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(249, 249, 249, .16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .2),
    inset 1px 0 0 rgba(255, 255, 255, .07),
    0 20px 60px rgba(0, 0, 0, .32);
}
.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.2) 0%, rgba(255,255,255,.055) 18%, transparent 38%);
  opacity: .4;
}
.glass-card::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 0;
  z-index: 3;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(249,249,249,.56), transparent);
}

/* Navigation */
.site-header {
  position: fixed; top: 0; left: 0; z-index: 100;
  width: 100%; height: 76px; display: grid;
  grid-template-columns: 1fr auto 1fr; align-items: center;
  padding-inline: max(28px, calc((100% - 1260px) / 2));
  background: rgba(10,10,10,.68); border-bottom: 1px solid rgba(249,249,249,.1);
  backdrop-filter: blur(20px) saturate(130%); -webkit-backdrop-filter: blur(20px) saturate(130%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 18px 50px rgba(0,0,0,.22);
}
.logo-wrap {
  position: relative;
  justify-self: start;
  display: flex;
  align-items: center;
  width: 104px;
  height: 48px;
  padding: 7px 10px;
  overflow: hidden;
  border: 1px solid rgba(249,249,249,.12);
  border-radius: 15px;
  background: rgba(255,255,255,.045);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 12px 30px rgba(0,0,0,.25);
}
.logo-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 14%;
  right: 14%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
}
.logo-wrap img { display: block; width: 100%; height: auto; }
.brand { font-size: 13px; font-weight: 900; letter-spacing: .12em; white-space: nowrap; }
.brand span { color: var(--orange); }
.desktop-nav { display: flex; gap: 34px; }
.desktop-nav a { color: var(--light-gray); font-size: 12px; font-weight: 600; transition: .25s ease; }
.desktop-nav a:hover, .desktop-nav a.active { color: #fff; }
.header-cta {
  justify-self: end;
  padding: 10px 17px;
  color: #080808;
  border-color: rgba(232,80,2,.65);
  background: var(--orange);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.24), 0 0 28px rgba(232,80,2,.28);
  font-size: 11px;
  font-weight: 800;
}
.header-cta:hover {
  color: var(--text);
  border-color: rgba(249,249,249,.18);
  background: rgba(255,255,255,.06);
}
.menu-toggle, .mobile-nav, .mobile-nav-overlay { display: none; }

/* Hero */
.hero { min-height: 790px; padding-top: 132px; display: flex; flex-direction: column; align-items: center; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(110px); opacity: .18; pointer-events: none; }
.glow-red { width: 360px; height: 360px; background: var(--red); left: -150px; top: 40px; }
.glow-orange { width: 300px; height: 300px; background: var(--orange-light); right: -110px; top: 160px; }
.sticker {
  position: absolute; padding: 6px 11px; border-radius: 4px; font-size: 9px; line-height: 1;
  font-weight: 900; letter-spacing: .06em; text-transform: uppercase; z-index: 3;
}
.availability {
  top: 96px; left: 50%; translate: -50% 0; rotate: -2deg; padding: 10px 18px; color: var(--text); background: var(--orange);
  font-size: 14px; letter-spacing: .08em; white-space: nowrap; box-shadow: 0 8px 28px rgba(232,80,2,.22);
}
.creative { top: 116px; right: 21%; rotate: 7deg; color: var(--orange-light); border: 1px solid var(--orange); background: rgba(0, 0, 0, .45); }
.hero-stage { width: 620px; min-width: 0; position: relative; }
.selection-label {
  display: inline-block; color: var(--text); background: var(--orange); padding: 4px 8px;
  font-size: 9px; line-height: 1.3; font-weight: 800; border-radius: 2px 2px 0 0;
}
.selection-box {
  position: relative; width: 100%; min-width: 0; height: 350px; display: flex; align-items: center;
  padding: 14px 22px; border: 2px solid var(--orange); background: rgba(0, 0, 0, .24);
  box-shadow: inset 0 0 60px rgba(232, 80, 2, .035), 0 0 38px rgba(232, 80, 2, .06);
}
.hero-selection-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2.8vw, 44px);
  width: 100%;
  height: 100%;
  min-width: 0;
}
.hero-character-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 35%;
  width: 35%;
  min-width: 0;
  height: 100%;
  pointer-events: none;
}
.hero-character {
  display: block;
  position: relative;
  z-index: 3;
  width: clamp(160px, 18vw, 230px);
  max-width: 100%;
  height: auto;
  max-height: 92%;
  object-fit: contain;
  opacity: 1;
  visibility: visible;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,.52)) drop-shadow(0 0 15px rgba(232,80,2,.16));
}
.selection-box h1 {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  margin: 0;
  color: var(--text);
  font-family: var(--display);
  font-size: 92px;
  font-weight: 400;
  line-height: 1.01;
  letter-spacing: -.018em;
  text-transform: uppercase;
  transform: scaleX(.96);
  transform-origin: left center;
}
.selection-box h1 span { display: block; white-space: nowrap; }
.selection-box h1 .last-name { display: flex; align-items: center; width: max-content; }
.accent-letter { color: var(--orange); font: inherit; }
.text-caret {
  display: inline-block; width: .035em; height: .83em; margin-left: .045em; background: var(--orange);
  box-shadow: 0 0 12px rgba(232, 80, 2, .65); animation: caretBlink .9s steps(1, end) infinite;
}
.pointer-cursor {
  position: absolute; z-index: 6; width: 44px; right: -46px; top: 38%;
  filter: drop-shadow(0 5px 8px rgba(0,0,0,.75)); animation: pointerSelect 3.2s ease-in-out infinite;
  pointer-events: none;
}
.pointer-cursor svg { display: block; overflow: visible; }
.pointer-fill { fill: var(--text); stroke: #000; stroke-width: 2.4; stroke-linejoin: round; }
.pointer-stem { fill: none; stroke: var(--orange); stroke-width: 5; stroke-linecap: round; }
.handle {
  position: absolute; width: 8px; height: 8px; background: var(--bg); border: 2px solid var(--orange); z-index: 2;
}
.tl { left: -5px; top: -5px; }.tm { left: 50%; top: -5px; }.tr { right: -5px; top: -5px; }
.ml { left: -5px; top: 50%; }.mr { right: -5px; top: 50%; }
.bl { left: -5px; bottom: -5px; }.bm { left: 50%; bottom: -5px; }.br { right: -5px; bottom: -5px; }
.name-tag {
  position: absolute; right: 28px; bottom: -13px; padding: 6px 12px; color: var(--text);
  background: var(--orange); border: 2px solid var(--bg); border-radius: 4px; font-size: 9px; font-weight: 900; white-space: nowrap;
}
.editor-panel {
  position: absolute; z-index: 4; width: 190px; padding: 12px; border: 1px solid var(--border);
  border-radius: 12px; background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(0,0,0,.68));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), inset 1px 0 0 rgba(255,255,255,.07), 0 18px 60px rgba(0,0,0,.42);
  backdrop-filter: blur(18px); font-size: 10px;
}
.panel-title { display: flex; justify-content: space-between; margin-bottom: 9px; color: #d7d9e0; font-weight: 800; }
.panel-row { padding: 8px; color: #7b8091; border-radius: 4px; }
.panel-row.selected { color: var(--orange-light); background: rgba(232, 80, 2, .13); }
.eye { display: inline-block; width: 20px; }
.layers-panel { right: 48px; top: 170px; }
.settings-panel { left: 34px; top: 314px; width: 160px; }
.setting-line { display: flex; justify-content: space-between; padding: 7px 0; color: #777d8d; border-bottom: 1px solid var(--border); }
.setting-line b { color: #d1d4dd; }
.mini-controls { display: flex; gap: 7px; padding: 11px 0; }
.mini-controls i { width: 20px; height: 20px; border: 1px solid var(--border); border-radius: 3px; }
.color-control { display: flex; align-items: center; gap: 7px; }
.color-control > span { width: 20px; height: 20px; border-radius: 3px; background: var(--orange); }
.color-control b { color: #777d8d; font-size: 9px; }
.color-control em { margin-left: auto; color: var(--text); background: var(--orange); padding: 2px 6px; border-radius: 3px; font-style: normal; }
.editor-toolbar {
  width: max-content; margin: 22px auto 0; display: flex; align-items: center; gap: 5px; padding: 7px;
  border: 1px solid var(--border); border-radius: 10px; background: rgba(10,10,10,.72);
  backdrop-filter: blur(16px); box-shadow: inset 0 1px 0 rgba(255,255,255,.2), inset 1px 0 0 rgba(255,255,255,.07), 0 12px 32px #0008;
}
.editor-toolbar button { width: 30px; height: 28px; border: 0; border-radius: 5px; background: transparent; color: #74798a; font-size: 11px; }
.editor-toolbar .tool-active { color: var(--orange-light); background: rgba(232,80,2,.15); border: 1px solid rgba(232,80,2,.35); }
.editor-toolbar > span { width: 1px; height: 18px; background: var(--border); margin: 0 5px; }
.editor-toolbar b { padding: 0 8px; color: #aaaebb; font-size: 9px; }
.hero-copy { width: 100%; max-width: 610px; margin: 40px auto 0; text-align: center; }
.hero-copy p { color: #8d92a0; font-size: 13px; }
.hero-copy strong { color: var(--orange-light); font-weight: 600; }
.hero-actions { display: flex; justify-content: center; gap: 12px; margin-top: 25px; }
.button, .glass-button {
  position: relative; isolation: isolate; overflow: hidden;
  border: 1px solid var(--glass-border); border-radius: 99px;
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), inset 0 -1px 0 rgba(255,255,255,.045), 0 10px 28px rgba(0,0,0,.3);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.glass-button::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(115deg, rgba(255,255,255,.2), transparent 34%, transparent 64%, rgba(255,255,255,.06));
  opacity: .65; transform: translateX(-35%); transition: transform .45s ease, opacity .3s ease;
}
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 48px;
  padding: 0 22px; text-transform: uppercase; font-size: 10px; font-weight: 900; letter-spacing: .07em;
}
.button:hover, .glass-button:hover { transform: translateY(-3px); border-color: rgba(249,249,249,.42); box-shadow: inset 0 1px 0 rgba(255,255,255,.32), 0 12px 36px rgba(232,80,2,.23); }
.glass-button:hover::before { transform: translateX(20%); opacity: .9; }
.glass-button-primary { color: var(--text); background: linear-gradient(135deg, rgba(232,80,2,.94), rgba(193,8,1,.7)); border-color: rgba(255,216,196,.46); }
.glass-button-dark { color: var(--text); background: var(--glass); }
.scroll-note { margin-top: auto; padding-bottom: 19px; color: #505463; font-size: 9px; text-transform: uppercase; letter-spacing: .15em; }
.scroll-note span { color: var(--orange); }

/* Works */
.works { padding-block: 120px 130px; }
.section-heading { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 62px; }
.section-heading h2, .process-heading h2 {
  margin: 0; font: 400 72px/.82 var(--display); letter-spacing: -.015em;
}
.section-heading h2 { line-height: .96; }
.section-heading h2 span { display: block; margin-top: .08em; color: var(--orange); -webkit-text-stroke: 0; }
.all-link { margin-bottom: 2px; color: #858a99; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.project-card {
  --tone: var(--orange); position: relative; min-height: 330px; padding: 22px; overflow: hidden;
  border: 1px solid var(--border); border-radius: var(--radius); background:
    radial-gradient(circle at 75% 100%, color-mix(in srgb, var(--tone) 13%, transparent), transparent 47%),
    linear-gradient(145deg, color-mix(in srgb, var(--tone) 7%, var(--surface)), rgba(5,5,5,.86));
  backdrop-filter: blur(16px); box-shadow: inset 0 1px 0 rgba(255,255,255,.18), inset 1px 0 0 rgba(255,255,255,.06), 0 18px 60px rgba(0,0,0,.3);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.project-card:hover { transform: translateY(-7px); border-color: color-mix(in srgb, var(--tone) 45%, transparent); box-shadow: 0 22px 60px color-mix(in srgb, var(--tone) 12%, transparent); }
.project-wide { grid-column: span 2; }
.tone-orange { --tone: var(--orange); }.tone-red { --tone: var(--red); }
.tone-sand { --tone: var(--sand); }.tone-orange-soft { --tone: var(--orange-light); }
.project-visual {
  height: 155px; display: grid; place-items: center; margin: -22px -22px 22px;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(circle at center, color-mix(in srgb, var(--tone) 22%, transparent), transparent 24%), color-mix(in srgb, var(--tone) 4%, transparent);
}
.project-image-visual { position: relative; overflow: hidden; background: #080808; }
.project-image-visual::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.38)), linear-gradient(135deg, rgba(255,255,255,.08), transparent 30%);
}
.project-image {
  width: 100%; height: 100%; display: block; object-fit: cover;
  filter: saturate(.88) contrast(1.05) brightness(.86); transition: transform .55s ease, filter .4s ease;
}
.project-image-per-lei { object-position: 50% 42%; }
.project-image-formefy { object-position: 50% 55%; }
.project-image-pocket { object-position: 50% 20%; }
.project-image-ghemon { object-position: 50% 8%; }
.project-card:hover .project-image { transform: scale(1.035); filter: saturate(1) contrast(1.06) brightness(.95); }
.project-image-pepinos { object-fit: cover; object-position: 50% 25%; background: #b20b03; }
.visual-icon {
  display: grid; place-items: center; width: 44px; height: 44px; color: var(--tone);
  border: 1px solid color-mix(in srgb, var(--tone) 35%, transparent); border-radius: 8px;
  background: color-mix(in srgb, var(--tone) 10%, #11131e); box-shadow: 0 0 25px color-mix(in srgb, var(--tone) 28%, transparent);
}
.project-meta { display: flex; align-items: center; justify-content: space-between; }
.tag { padding: 4px 8px; color: var(--tone); background: color-mix(in srgb, var(--tone) 11%, transparent); border-radius: 4px; font-size: 8px; font-weight: 800; text-transform: uppercase; }
.project-meta small { color: #676c7b; font-size: 8px; font-weight: 700; }
.project-card h3 { margin: 15px 0 5px; font: 400 20px/1 var(--display); }
.project-card p { max-width: 570px; margin: 0 0 13px; color: #797e8d; font-size: 10px; }
.project-card > a { color: var(--tone); font-size: 9px; font-weight: 900; text-transform: uppercase; }
.project-card > a::after { content: ""; position: absolute; inset: 0; z-index: 4; }
.project-card > a:focus-visible::after { outline: 2px solid var(--orange); outline-offset: -4px; border-radius: inherit; }
.coming-soon { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: linear-gradient(145deg, rgba(51,51,51,.38), rgba(0,0,0,.82)); }
.coming-soon .plus { color: #6d716b; font-size: 26px; }
.coming-soon h3 { color: #b5b7b2; font-size: 15px; line-height: 1.3; }

/* About */
.about { min-height: 760px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 110px; align-items: center; padding-block: 110px; }
.portrait-wrap { position: relative; width: 440px; max-width: 100%; rotate: -3deg; }
.portrait-card {
  position: relative; height: 590px; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 20px;
  background: radial-gradient(circle at 35% 35%, rgba(232,80,2,.22), transparent 40%), linear-gradient(150deg, #391204, #180805 62%, #080808);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), inset 1px 0 0 rgba(255,255,255,.07), 0 40px 70px rgba(0,0,0,.35), 12px 12px 0 rgba(255,255,255,.018);
}
.portrait-image {
  position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%;
  filter: saturate(.86) contrast(1.04) brightness(.85);
}
.portrait-shade {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,.05), transparent 45%, rgba(0,0,0,.62)),
    radial-gradient(circle at 70% 28%, rgba(232,80,2,.12), transparent 34%);
}
.portrait-top, .portrait-bottom { position: absolute; left: 22px; right: 22px; z-index: 2; display: flex; justify-content: space-between; font-size: 9px; }
.portrait-top { top: 20px; }.portrait-top b { color: var(--orange); }
.portrait-bottom { bottom: 20px; align-items: flex-end; }
.portrait-bottom strong { font-size: 10px; }.portrait-bottom span { color: var(--orange-light); }
.orbit { position: absolute; width: 540px; height: 540px; left: -55px; top: 38px; border: 1px dashed rgba(232,80,2,.48); border-radius: 50%; }
.orbit::before, .orbit::after, .orbit span { content: ""; position: absolute; width: 7px; height: 7px; background: var(--orange); border-radius: 50%; }
.orbit::before { top: 60px; left: 80px; }.orbit::after { right: 4px; top: 235px; }.orbit span { left: 80px; bottom: 61px; }
.tape { position: absolute; z-index: 3; width: 92px; height: 22px; background: rgba(232,80,2,.68); }
.tape-top { top: -9px; left: 120px; rotate: -3deg; }.tape-bottom { bottom: -7px; right: 82px; background: rgba(217,195,171,.48); rotate: 5deg; }
.portrait-sticker { position: absolute; right: -9px; top: 5px; z-index: 4; padding: 5px 8px; color: var(--orange-light); border: 1px solid var(--orange); font-size: 8px; font-weight: 900; rotate: 8deg; }
.about-copy { max-width: 540px; }
.about-copy h2 { margin: 0 0 26px; font: 400 66px/.9 var(--display); }
.about-copy h2 span { color: var(--orange); }
.about-copy > p { color: #969aa8; font-size: 14px; line-height: 1.8; }
.about-copy > p strong { color: #fff; }.about-copy > p em { color: var(--orange-light); font-style: normal; }
.badges { display: flex; flex-wrap: wrap; gap: 9px; margin: 30px 0; }
.badges span { padding: 6px 11px; border: 1px solid var(--border); border-radius: 99px; background: rgba(255,255,255,.035); color: #aaaeba; font-size: 9px; font-weight: 700; }
.badges .glass-card::before { opacity: .28; }
.badges .glass-card::after { left: 18%; right: 18%; }
.badges span:nth-child(1), .badges span:nth-child(4) { color: var(--orange-light); border-color: rgba(232,80,2,.28); }
.badges span:nth-child(2) { color: var(--text); }.badges span:nth-child(3) { color: var(--sand); }
/* Process */
.process { padding-block: 105px 120px; }
.process-heading { margin-bottom: 55px; }
.process-heading h2 span { color: var(--orange); font: inherit; letter-spacing: inherit; }
.process-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 15px; }
.process-card { min-height: 250px; padding: 24px; border: 1px solid var(--border); border-radius: 14px; background: rgba(18,18,18,.72); backdrop-filter: blur(14px); transition: .3s ease; }
.process-card:hover { transform: translateY(-6px); border-color: rgba(232,80,2,.34); background: rgba(28,18,14,.88); box-shadow: 0 14px 38px rgba(193,8,1,.1); }
.process-card > div { display: flex; justify-content: space-between; align-items: center; }
.process-card b { color: #777b88; font-size: 10px; }
.process-icon { display: grid; place-items: center; width: 35px; height: 35px; border: 1px solid currentColor; border-radius: 7px; background: rgba(255,255,255,.025); }
.process-icon svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-orange { color: var(--orange); }.icon-white { color: var(--text); }.icon-red { color: var(--red); }.icon-gray { color: var(--light-gray); }
.process-card h3 { margin: 60px 0 12px; font: 400 20px var(--display); }
.process-card p { margin: 0; color: #747988; font-size: 10px; line-height: 1.65; }

/* Skills */
.skills { display: grid; grid-template-columns: 410px 1fr; gap: 80px; align-items: center; padding-block: 110px; border-top: 1px solid var(--border); }
.skills-card {
  position: relative; min-height: 400px; padding: 40px; overflow: hidden; color: #111; border-radius: 20px;
  background: var(--orange); box-shadow: inset 0 1px 0 rgba(255,255,255,.32), inset 1px 0 0 rgba(255,255,255,.14), 0 20px 80px rgba(232,80,2,.13);
}
.skills-card > span { font-size: 9px; font-weight: 800; letter-spacing: .08em; }
.skills-card h2 { margin: 55px 0 15px; font: 400 54px/.9 var(--display); }
.skills-card p { max-width: 260px; font-size: 11px; line-height: 1.6; }
.tool-pills { display: flex; flex-wrap: wrap; gap: 13px; }
.tool-pills > span { display: flex; align-items: center; gap: 9px; padding: 11px 16px; border: 1px solid var(--border); border-radius: 8px; background: rgba(20,20,20,.72); color: #b2b2b2; font-size: 10px; font-weight: 700; transition: .25s ease; }
.tool-pills > span:hover { translate: 0 -3px; color: #fff; border-color: rgba(232,80,2,.34); }
.dot { width: 7px; height: 7px; border-radius: 2px; background: #fff; box-shadow: 0 0 9px currentColor; }
.figma, .ai, .branding, .ai-tools { background: var(--orange); }
.ps, .web, .lightroom { background: var(--light-gray); }
.pr, .indesign { background: var(--sand); }.ux { background: var(--red); }
.learning { margin-top: 40px; color: #767b8b; font-size: 11px; }
.learning > span, .learning strong { color: var(--orange-light); }

/* Final CTA and footer */
.final-cta { min-height: 720px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.cta-glow { position: absolute; width: 560px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(232,80,2,.24), rgba(193,8,1,.1) 48%, transparent 72%); filter: blur(80px); pointer-events: none; }
.final-cta h2 { position: relative; margin: 0; font: 400 clamp(48px, 6vw, 82px)/.98 var(--display); letter-spacing: -.02em; }
.cta-orange { color: var(--orange); text-shadow: 0 0 28px rgba(232,80,2,.22); }
.final-cta > p { max-width: 500px; color: #777c8a; font-size: 12px; }
.cta-button { margin-top: 25px; min-width: 190px; }
footer {
  width: min(100% - 40px, var(--container)); min-height: 105px; margin: auto; display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; border-top: 1px solid var(--border); color: #646978; font-size: 9px;
}
.footer-logo {
  position: relative;
  justify-self: start;
  display: flex;
  align-items: center;
  width: 88px;
  height: 42px;
  padding: 6px 9px;
  overflow: hidden;
  border: 1px solid rgba(249,249,249,.11);
  border-radius: 13px;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.17), 0 10px 28px rgba(0,0,0,.24);
}
.footer-logo img { display: block; width: 100%; height: auto; }
.footer-role {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 13px;
  color: #d8d8d8;
  border: 1px solid rgba(249,249,249,.13);
  border-radius: 99px;
  background: rgba(255,255,255,.045);
  backdrop-filter: blur(14px) saturate(125%);
  -webkit-backdrop-filter: blur(14px) saturate(125%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    0 10px 28px rgba(0,0,0,.24),
    0 0 18px rgba(232,80,2,.07);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: lowercase;
}

/* Motion */
@keyframes caretBlink { 0%, 46% { opacity: 1; } 47%, 100% { opacity: 0; } }
@keyframes pointerSelect {
  0%, 100% { transform: translate(0, 0) rotate(-7deg); }
  48%, 58% { transform: translate(-12px, -9px) rotate(-4deg) scale(.94); }
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.floating { animation: float 5s ease-in-out infinite; }.floating-delayed { animation: float 6s 1s ease-in-out infinite; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Responsive */
@media (max-width: 1050px) {
  .selection-box { height: 326px; padding: 16px 21px; }.selection-box h1 { font-size: 84px; line-height: 1.02; transform: scaleX(.94); }
  .hero-stage { width: 575px; }.settings-panel { left: 0; }.layers-panel { right: 0; }
  .about { gap: 55px; }.portrait-card { height: 520px; }.about-copy h2 { font-size: 58px; }
  .skills { grid-template-columns: 350px 1fr; gap: 45px; }
}
@media (max-width: 820px) {
  .desktop-nav, .header-cta { display: none; }
  .site-header {
    grid-template-columns: 1fr auto;
    column-gap: 8px;
    padding-inline: 16px;
  }
  .logo-wrap { grid-column: 1; grid-row: 1; width: 94px; height: 44px; }
  .menu-toggle {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    padding: 9px;
    border: 1px solid rgba(249,249,249,.13);
    border-radius: 11px;
    background: rgba(255,255,255,.045);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 8px 24px rgba(0,0,0,.24);
    cursor: pointer;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }
  .menu-toggle span {
    width: 18px;
    height: 1.5px;
    border-radius: 2px;
    background: var(--orange);
    transform-origin: center;
    transition: transform .25s ease, opacity .2s ease, background .25s ease;
  }
  .menu-toggle:hover span,
  .menu-toggle[aria-expanded="true"] span { background: var(--orange); }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(6.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-6.5px) rotate(-45deg); }
  .mobile-nav {
    position: fixed;
    display: flex;
    flex-direction: column;
    gap: 7px;
    top: 82px;
    left: auto;
    right: 16px;
    z-index: 4;
    width: 230px;
    max-width: calc(100vw - 32px);
    max-height: calc(100dvh - 100px);
    padding: 18px;
    overflow-y: auto;
    border: 1px solid rgba(249,249,249,.18);
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(38,38,38,.88), rgba(8,8,8,.94));
    backdrop-filter: blur(24px) saturate(130%);
    -webkit-backdrop-filter: blur(24px) saturate(130%);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.22),
      inset 1px 0 0 rgba(255,255,255,.08),
      0 24px 80px rgba(0,0,0,.55),
      0 0 40px rgba(232,80,2,.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(calc(100% + 34px));
    transform-origin: right center;
    transition: opacity .32s ease, visibility .32s ease, transform .35s cubic-bezier(.22,.8,.24,1);
  }
  .mobile-nav.open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(0); }
  .mobile-nav a {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 14px;
    color: var(--light-gray);
    border: 1px solid rgba(249,249,249,.12);
    border-radius: 99px;
    background: rgba(255,255,255,.07);
    font-size: 12px;
    font-weight: 650;
    transition: color .2s ease, background .2s ease, border-color .2s ease;
  }
  .mobile-nav a::before {
    display: grid;
    place-items: center;
    flex: 0 0 25px;
    width: 25px;
    height: 25px;
    color: var(--orange-light);
    border: 1px solid rgba(232,80,2,.22);
    border-radius: 50%;
    background: rgba(232,80,2,.07);
    font-size: 10px;
  }
  .mobile-nav a:nth-child(1)::before { content: "⌂"; }
  .mobile-nav a:nth-child(2)::before { content: "◇"; }
  .mobile-nav a:nth-child(3)::before { content: "●"; }
  .mobile-nav a:nth-child(4)::before { content: "✦"; }
  .mobile-nav a:hover {
    color: var(--orange-light);
    background: rgba(232,80,2,.22);
    border-color: rgba(232,80,2,.45);
  }
  .mobile-nav a.active {
    color: var(--orange-light);
    background: rgba(232,80,2,.22);
    border-color: rgba(232,80,2,.45);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 0 22px rgba(232,80,2,.08);
  }
  .mobile-nav .mobile-contact {
    justify-content: center;
    margin-top: 8px;
    padding: 13px 18px;
    overflow: hidden;
    color: #080808;
    border-color: rgba(232,80,2,.65);
    background: var(--orange);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.24), 0 0 28px rgba(232,80,2,.24);
    text-transform: uppercase;
    text-align: center;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .07em;
  }
  .mobile-nav .mobile-contact::before { display: none; content: none; }
  .mobile-nav .mobile-contact:hover {
    color: #080808;
    border-color: rgba(232,80,2,.75);
    background: var(--orange-light);
  }
  .mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 3;
    display: block;
    width: 100vw;
    height: 100dvh;
    padding: 0;
    border: 0;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
  }
  .mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .site-header {
    border-color: rgba(249,249,249,.14);
    background: rgba(10,10,10,.76);
    backdrop-filter: blur(22px) saturate(135%);
    -webkit-backdrop-filter: blur(22px) saturate(135%);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.2),
      0 16px 44px rgba(0,0,0,.36),
      0 0 24px rgba(232,80,2,.06);
  }
  .glass-card,
  .project-card,
  .process-card,
  .portrait-card,
  .tools-glass-bar,
  .about-ui,
  .service-card {
    border-color: rgba(249,249,249,.17);
    backdrop-filter: blur(18px) saturate(130%);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.23),
      inset 1px 0 0 rgba(255,255,255,.09),
      0 18px 50px rgba(0,0,0,.38),
      0 0 28px rgba(232,80,2,.08);
  }
  .glass-card::before,
  .project-card::before,
  .process-card::before,
  .portrait-card::before,
  .tools-glass-bar::before,
  .about-ui::before,
  .service-card::before {
    opacity: .56;
  }
  .selection-box {
    background:
      linear-gradient(135deg, rgba(255,255,255,.055), transparent 36%),
      rgba(0,0,0,.42);
    backdrop-filter: blur(16px) saturate(125%);
    -webkit-backdrop-filter: blur(16px) saturate(125%);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.2),
      inset 1px 0 0 rgba(255,255,255,.07),
      inset 0 0 54px rgba(232,80,2,.045),
      0 18px 48px rgba(0,0,0,.32),
      0 0 28px rgba(232,80,2,.09);
  }
  .button,
  .glass-button {
    backdrop-filter: blur(18px) saturate(130%);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.25),
      inset 1px 0 0 rgba(255,255,255,.08),
      0 12px 34px rgba(0,0,0,.32),
      0 0 22px rgba(232,80,2,.08);
  }
  .skills-card {
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.38),
      inset 1px 0 0 rgba(255,255,255,.17),
      0 22px 64px rgba(0,0,0,.34),
      0 0 34px rgba(232,80,2,.14);
  }
  .tool-pills > span {
    border-color: rgba(249,249,249,.16);
    background: rgba(20,20,20,.76);
    backdrop-filter: blur(16px) saturate(125%);
    -webkit-backdrop-filter: blur(16px) saturate(125%);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.18),
      inset 1px 0 0 rgba(255,255,255,.06),
      0 10px 28px rgba(0,0,0,.24);
  }
  .hero { min-height: 720px; }.hero-stage { width: min(78vw, 575px); }
  .selection-box { height: 300px; padding: 15px 20px; }
  .hero-selection-content { gap: 12px; }
  .selection-box h1 { font-size: clamp(64px, 9.7vw, 76px); transform: scaleX(.92); }
  .hero-character-wrap { flex-basis: 35%; width: 35%; }
  .hero-character { width: clamp(130px, 20vw, 190px); max-height: 94%; }
  .pointer-cursor { right: -34px; top: 42%; }
  .settings-panel { left: -6px; top: 365px; transform: scale(.86); transform-origin: left; }
  .layers-panel { right: -5px; top: 145px; transform: scale(.86); transform-origin: right; }
  .works-grid { grid-template-columns: repeat(2, 1fr); }.project-wide { grid-column: span 2; }
  .about { grid-template-columns: 1fr; gap: 80px; }.portrait-wrap { margin: auto; }.about-copy { margin: auto; }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid .process-card:last-child { grid-column: 1 / -1; }
  .skills { grid-template-columns: 1fr; }.skills-card { max-width: 460px; }
}
@media (max-width: 560px) {
  body { background-size: 32px 32px; }
  .section { width: min(100% - 28px, var(--container)); }
  main { max-width: 100%; overflow-x: clip; }
  img, video, canvas { max-width: 100%; }
  .site-header { width: 100%; height: 64px; padding-inline: 14px; }
  .logo-wrap { width: 86px; height: 40px; padding: 6px 8px; border-radius: 13px; }
  .hero { min-height: 700px; padding-top: 118px; }
  .availability { top: 82px; left: 50%; padding: 8px 12px; font-size: 10px; }.creative { top: 108px; right: 1%; }
  .hero-stage { width: calc(100vw - 40px); max-width: 100%; min-width: 0; }
  .selection-box { height: 245px; padding: 12px 14px; }
  .hero-selection-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    overflow: visible;
  }
  .selection-box h1 {
    width: auto;
    font-size: clamp(45px, 13vw, 51px);
    line-height: .99;
    transform: scaleX(.9);
  }
  .hero-character-wrap { display: flex; width: auto; height: 100%; opacity: 1; visibility: visible; }
  .hero-character { display: block; width: clamp(120px, 32vw, 155px); max-width: none; max-height: 92%; opacity: 1; visibility: visible; }
  .selection-label { font-size: 7px; }
  .layers-panel, .settings-panel { display: none; }
  .name-tag { right: 16px; font-size: 7px; }
  .pointer-cursor { display: block; width: 28px; right: -12px; top: 47%; }
  .editor-toolbar { margin-top: 16px; transform: scale(.9); }
  .hero-copy { margin-top: 48px; }.hero-copy p { padding: 0 15px; font-size: 11px; }
  .hero-copy strong { display: block; }
  .hero-actions { gap: 8px; }.hero-actions .button { padding-inline: 18px; gap: 12px; }
  .scroll-note { display: none; }
  .works { padding-block: 95px; }
  .section-heading { margin-bottom: 45px; }.section-heading h2, .process-heading h2 { font-size: 55px; }
  .all-link { display: none; }
  .works-grid { grid-template-columns: 1fr; }.project-wide { grid-column: span 1; }
  .project-card {
    min-height: 320px; backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.2), inset 1px 0 0 rgba(255,255,255,.07), 0 18px 52px rgba(0,0,0,.32);
  }
  .project-visual { height: 180px; }
  .project-image-pocket { object-position: 50% 13%; }
  .project-image-ghemon { object-position: 50% 5%; }
  .about { padding-block: 90px; }.portrait-wrap { width: calc(100% - 18px); }
  .portrait-card { height: 490px; }.monogram { font-size: 110px; }
  .about-copy h2 { font-size: 54px; }.about-copy > p { font-size: 13px; }
  .process { padding-block: 90px; }.process-grid { grid-template-columns: 1fr; }
  .process-grid .process-card:last-child { grid-column: auto; }
  .process-card { min-height: 210px; }.process-card h3 { margin-top: 40px; }
  .skills { padding-block: 85px; }.skills-card { min-height: 350px; padding: 30px; }.skills-card h2 { font-size: 48px; margin-top: 45px; }
  .tool-pills { gap: 8px; }.tool-pills > span { padding: 9px 11px; font-size: 9px; }
  .final-cta { min-height: 650px; }.final-cta h2 { font-size: clamp(41px, 12vw, 60px); }
  footer { min-height: 150px; grid-template-columns: 1fr 1fr; }.footer p { grid-column: span 2; }
  .footer-logo { width: 76px; height: 38px; padding: 6px 8px; }
  footer > p { order: 3; grid-column: 1 / -1; text-align: center; }
  .footer-role {
    justify-self: end;
    min-height: 30px;
    padding: 6px 11px;
    font-size: 9px;
    border-color: rgba(249,249,249,.17);
    background: rgba(255,255,255,.06);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.2),
      0 10px 24px rgba(0,0,0,.3),
      0 0 18px rgba(232,80,2,.08);
  }
  footer {
    margin-bottom: 14px;
    padding: 16px;
    border: 1px solid rgba(249,249,249,.14);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(8,8,8,.72));
    backdrop-filter: blur(16px) saturate(125%);
    -webkit-backdrop-filter: blur(16px) saturate(125%);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.18),
      inset 1px 0 0 rgba(255,255,255,.06),
      0 18px 48px rgba(0,0,0,.34),
      0 0 24px rgba(232,80,2,.07);
  }
}

@media (max-width: 420px) {
  .hero-stage {
    width: calc(100vw - 28px);
  }
  .selection-box {
    padding-inline: 10px;
  }
  .hero-selection-content {
    grid-template-columns: minmax(0, 1fr) 122px;
    gap: 4px;
  }
  .selection-box h1 {
    font-size: clamp(39px, 11vw, 46px);
    line-height: 1;
    transform: scaleX(.86);
  }
  .hero-character-wrap {
    width: 122px;
    min-width: 122px;
  }
  .hero-character {
    width: 122px;
    max-height: 92%;
  }
  .pointer-cursor {
    right: -8px;
    width: 25px;
  }
}
