
body {
  background:
    radial-gradient(ellipse 100% 55% at 50% -2%, rgba(255,106,33,.08), transparent 56%),
    radial-gradient(ellipse 60% 50% at 88% 72%, rgba(148,72,210,.05), transparent 52%),
    radial-gradient(ellipse 55% 40% at 8% 60%, rgba(255,80,20,.04), transparent 50%),
    linear-gradient(168deg, #100d1a 0%, #0b0810 48%, #060409 100%);
  color: #f0ece6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  position: relative;
  z-index: 1;
  padding: clamp(52px, 8vw, 108px) 0 108px;
}


.showcase {
  position: relative;
}

.showcase-shell {
  position: relative;
  z-index: 1;
}

.showcase-head {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.showcase-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.52);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.showcase-kicker::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,122,47,.8);
  flex-shrink: 0;
}

.showcase-title {
  margin: 28px auto 0;
  max-width: 14ch;
  color: #f0ece6;
  font-size: clamp(42px, 6.5vw, 88px);
  line-height: .96;
  letter-spacing: -.055em;
  font-weight: 800;
  text-wrap: balance;
}

.showcase-title .script-accent {
  display: inline-block;
  margin-left: .06em;
  font-family: "Times New Roman", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.02em;
  background: linear-gradient(90deg, #ff6a21, #fff1d7, #ffc14f);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: accentGradientShift 5.2s ease-in-out infinite;
}

.showcase-copy {
  margin: 22px auto 0;
  max-width: 580px;
  color: rgba(255,255,255,.44);
  font-size: 16px;
  line-height: 1.75;
}


.filter-bar {
  margin: 52px auto 0;
  max-width: 960px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.filter-chip {
  appearance: none;
  border: 1px solid rgba(255,255,255,.10);
  background: transparent;
  color: rgba(255,255,255,.44);
  height: 36px;
  padding: 0 16px;
  border-radius: 6px;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: border-color .16s ease, background .16s ease, color .16s ease;
}

.filter-chip:hover {
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.78);
}

.filter-chip.is-active {
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-weight: 600;
}


.gallery-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.work-card {
  min-width: 0;
  cursor: pointer;
}

.work-card[data-url=""] { cursor: default }


.work-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(140deg, var(--bg-a), var(--bg-b));
  transform: translate3d(0,0,0);
  transition: transform .28s cubic-bezier(.22,.78,.15,1), border-color .22s ease, box-shadow .28s ease;
  isolation: isolate;
}

.work-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, var(--glow-a), transparent 32%),
    radial-gradient(circle at 82% 18%, var(--glow-b), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.07), transparent 32%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.032) 0 1px, transparent 1px 48px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.022) 0 1px, transparent 1px 48px);
  z-index: 0;
}

.work-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(5,5,10,.22) 55%, rgba(5,5,10,.88) 100%);
  z-index: 2;
}

.work-card:hover .work-thumb {
  transform: translate3d(0,-6px,0);
  border-color: rgba(255,255,255,.14);
  box-shadow: 0 32px 64px rgba(0,0,0,.38);
}


.work-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.pattern-line,
.pattern-card,
.pattern-orb,
.pattern-ring,
.pattern-window {
  position: absolute;
  display: block;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.pattern-line {
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 0;
}

.pattern-orb,
.pattern-ring { border-radius: 999px }

.pattern-ring {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.16);
  box-shadow: none;
}

.theme-office .pattern-window.one  { left: 10%; top: 18%; width: 32%; height: 44% }
.theme-office .pattern-window.two  { right: 9%; top: 14%; width: 24%; height: 56% }
.theme-office .pattern-line.one    { left: 14%; bottom: 34%; width: 48% }
.theme-office .pattern-line.two    { left: 14%; bottom: 26%; width: 34% }

.theme-conversation .pattern-orb.one  { left: 12%; top: 18%; width: 84px; height: 84px }
.theme-conversation .pattern-orb.two  { right: 14%; top: 26%; width: 128px; height: 128px; background: rgba(255,255,255,.07) }
.theme-conversation .pattern-line.one { left: 14%; bottom: 28%; width: 58% }
.theme-conversation .pattern-line.two { left: 14%; bottom: 20%; width: 42% }

.theme-portrait .pattern-window.one { left: 20%; top: 16%; width: 28%; height: 58%; border-radius: 28px }
.theme-portrait .pattern-window.two { right: 18%; top: 12%; width: 20%; height: 26% }
.theme-portrait .pattern-line.one   { left: 18%; bottom: 25%; width: 54% }

.theme-landscape .pattern-window.one { left: 8%; right: 8%; top: 14%; height: 50%; border-radius: 22px }
.theme-landscape .pattern-ring.one   { left: 12%; bottom: 18%; width: 90px; height: 90px }
.theme-landscape .pattern-line.one   { left: 28%; bottom: 24%; width: 46% }

.theme-product .pattern-window.one { left: 31%; top: 16%; width: 38%; height: 54%; border-radius: 20px }
.theme-product .pattern-card.one   { left: 10%; top: 16%; width: 14%; height: 16% }
.theme-product .pattern-card.two   { right: 11%; top: 18%; width: 16%; height: 18% }
.theme-product .pattern-card.three { right: 18%; bottom: 20%; width: 14%; height: 16% }
.theme-product .pattern-card.four  { left: 18%; bottom: 16%; width: 16%; height: 20% }

.theme-motion .pattern-ring.one { left: 50%; top: 22%; width: 170px; height: 170px; transform: translateX(-50%) }
.theme-motion .pattern-ring.two { left: 50%; top: 9%;  width: 250px; height: 250px; transform: translateX(-50%) }
.theme-motion .pattern-orb.one  { left: 50%; top: 44%; width: 74px; height: 74px; transform: translateX(-50%); background: rgba(255,255,255,.10) }
.theme-motion .pattern-line.one { left: 18%; bottom: 20%; width: 64% }

.theme-social .pattern-orb.one  { left: 12%; top: 14%; width: 122px; height: 122px }
.theme-social .pattern-orb.two  { right: 8%; bottom: 24%; width: 150px; height: 150px; background: rgba(255,255,255,.07) }
.theme-social .pattern-line.one { left: 16%; bottom: 26%; width: 44% }
.theme-social .pattern-line.two { left: 16%; bottom: 18%; width: 58% }

.theme-expert .pattern-window.one { left: 14%; top: 14%; width: 68%; height: 50% }
.theme-expert .pattern-card.one   { right: 10%; top: 20%; width: 18%; height: 24% }
.theme-expert .pattern-line.one   { left: 16%; bottom: 26%; width: 54% }
.theme-expert .pattern-line.two   { left: 16%; bottom: 18%; width: 36% }

.theme-tutorial .pattern-window.one { left: 12%; top: 14%; width: 76%; height: 46% }
.theme-tutorial .pattern-card.one   { left: 16%; bottom: 18%; width: 18%; height: 22% }
.theme-tutorial .pattern-card.two   { left: 40%; bottom: 18%; width: 18%; height: 22% }
.theme-tutorial .pattern-card.three { left: 64%; bottom: 18%; width: 18%; height: 22% }


.work-top {
  position: absolute;
  inset: 16px 16px auto;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.work-type {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 10px;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(5,5,10,.28);
  color: rgba(255,255,255,.78);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.work-play {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(5,5,10,.28);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .18s ease, border-color .18s ease;
}

.work-card:hover .work-play {
  background: rgba(5,5,10,.5);
  border-color: rgba(255,255,255,.24);
}

.work-play svg { margin-left: 2px; display: block }

.work-meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  padding: 20px 20px 22px;
  color: #fff;
}

.work-name {
  margin: 0;
  font-size: 20px;
  line-height: 1.12;
  letter-spacing: -.03em;
  font-weight: 700;
  color: rgba(255,255,255,.96);
}

.work-caption {
  margin: 6px 0 0;
  color: rgba(255,255,255,.56);
  font-size: 13px;
  line-height: 1.5;
}

.work-client {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .01em;
}

.work-client::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,200,120,.7);
  flex-shrink: 0;
}


.theme-office       { --bg-a: #55615b; --bg-b: #151c1f; --glow-a: rgba(195,213,193,.18); --glow-b: rgba(93,122,108,.12) }
.theme-conversation { --bg-a: #b46d3c; --bg-b: #221816; --glow-a: rgba(255,208,167,.20); --glow-b: rgba(255,146,98,.14) }
.theme-portrait     { --bg-a: #7f3f3d; --bg-b: #171316; --glow-a: rgba(255,181,167,.18); --glow-b: rgba(254,218,173,.12) }
.theme-landscape    { --bg-a: #577d92; --bg-b: #13222d; --glow-a: rgba(208,237,255,.15); --glow-b: rgba(119,180,215,.12) }
.theme-product      { --bg-a: #2876e1; --bg-b: #0a1730; --glow-a: rgba(165,208,255,.17); --glow-b: rgba(92,126,255,.14) }
.theme-motion       { --bg-a: #f4c2a0; --bg-b: #a54228; --glow-a: rgba(255,236,224,.20); --glow-b: rgba(255,164,126,.14) }
.theme-social       { --bg-a: #f6b8d2; --bg-b: #522f75; --glow-a: rgba(255,234,244,.18); --glow-b: rgba(255,179,225,.12) }
.theme-expert       { --bg-a: #5d8c78; --bg-b: #0f1f22; --glow-a: rgba(188,234,219,.15); --glow-b: rgba(119,196,154,.10) }
.theme-tutorial     { --bg-a: #98b6b6; --bg-b: #1b2530; --glow-a: rgba(229,249,252,.15); --glow-b: rgba(156,205,213,.11) }


.work-thumb-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}

.work-card[data-has-thumb="true"] .work-pattern { display: none }
.work-card[data-has-thumb="true"] .work-thumb::before {
  background:
    linear-gradient(180deg, rgba(0,0,0,.14), transparent 40%);
  opacity: 1;
}


.vmodal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vmodal[hidden] { display: none }

.vmodal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4,4,8,.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.vmodal-shell {
  position: relative;
  width: min(960px, calc(100vw - 32px));
  z-index: 1;
}

.vmodal-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.72);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .16s ease, color .16s ease;
}
.vmodal-close:hover { background: rgba(255,255,255,.12); color: #fff }

.vmodal-frame {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,.10);
}
.vmodal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


.real-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vh, 130px) 0 clamp(80px, 10vh, 120px);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(255,255,255,.86), transparent 48%),
    radial-gradient(42% 54% at 22% 30%, rgba(81,106,225,.10), transparent 70%),
    radial-gradient(34% 42% at 76% 22%, rgba(255,255,255,.78), transparent 68%),
    radial-gradient(32% 42% at 68% 74%, rgba(67,96,214,.08), transparent 74%),
    linear-gradient(180deg, #f8f2ea 0%, #f5ede3 100%);
}

.real-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(11,11,15,.018) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.26) 0 1px, transparent 1px 7px);
  opacity: .26;
  mix-blend-mode: multiply;
}

.real-cta::after {
  content: none;
}

.real-cta .home-contact-cta {
  display: grid;
  justify-items: center;
  gap: 20px;
  padding: 0;
  text-align: center;
}

.real-cta .home-contact-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(37,56,124,.14);
  background: rgba(255,255,255,.52);
  color: rgba(18,28,60,.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: none;
}

.real-cta .home-contact-title {
  margin: 0;
  max-width: 21.5ch;
  color: rgba(11,11,15,.84);
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 500;
  line-height: .95;
  letter-spacing: -.065em;
  text-wrap: balance;
}

.real-cta .home-contact-muted {
  color: rgba(11,11,15,.24);
  font-weight: 400;
}

.real-cta .home-contact-strong {
  background: linear-gradient(90deg, #ff8c00 0%, #ffc800 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  text-shadow: none;
}

.real-cta .home-contact-actions {
  display: grid;
  justify-items: center;
  gap: 14px;
  width: 100%;
  margin-top: 6px;
}

.real-cta .home-contact-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 430px);
  min-height: 76px;
  padding: 0 clamp(22px, 2.6vw, 40px);
  border-radius: 24px;
  border: 2px solid rgba(255,182,36,.74);
  background: linear-gradient(180deg, rgba(255,252,245,.78), rgba(255,245,223,.48));
  box-shadow: none;
  color: #ff9800;
  font-size: clamp(19px, .8vw + 17px, 29px);
  font-weight: 800;
  letter-spacing: -.035em;
  text-decoration: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, color .22s ease, background .22s ease;
}

.real-cta .home-contact-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255,193,8,.88);
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,244,214,.58));
  box-shadow: none;
  color: #ff8c00;
}

.real-cta .home-contact-note {
  margin: -2px 0 0;
  color: rgba(18,28,60,.58);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}

.real-cta .home-contact-direct {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(18,28,60,.54);
  font-size: 13px;
  font-weight: 600;
}

.real-cta .home-contact-direct a {
  color: rgba(18,28,60,.54);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .16s ease;
}

.real-cta .home-contact-direct a:hover { color: rgba(18,28,60,.74) }
.real-cta .home-contact-direct span { color: rgba(18,28,60,.42) }


.gallery-empty {
  margin: 24px 0 0;
  text-align: center;
  color: rgba(255,255,255,.36);
  font-size: 14px;
  display: none;
}
.gallery-empty.is-visible { display: block }


@media (max-width: 1120px) {
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) }
}

@media (max-width: 720px) {
  main { padding: 32px 0 80px }

  .showcase-title { font-size: clamp(38px, 11vw, 54px) }
  .showcase-copy { font-size: 15px }

  .filter-bar { gap: 8px; margin-top: 36px }
  .filter-chip { height: 34px; padding: 0 14px; font-size: 13px }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
  }

  .work-thumb { border-radius: 14px }
  .work-name { font-size: 18px }

  .real-cta .home-contact-title {
    max-width: 18ch;
    font-size: clamp(30px, 5.8vw, 46px);
  }

  .real-cta .home-contact-button {
    min-width: min(100%, 360px);
    min-height: 68px;
    font-size: clamp(18px, 3.8vw, 26px);
  }
}

@media (max-width: 560px) {
  .real-cta .home-contact-cta {
    gap: 16px;
  }

  .real-cta .home-contact-kicker {
    min-height: 32px;
    padding: 0 13px;
    font-size: 10px;
  }

  .real-cta .home-contact-title {
    max-width: 13.5ch;
    font-size: clamp(27px, 7.8vw, 36px);
  }

  .real-cta .home-contact-button {
    min-width: 100%;
    min-height: 60px;
    border-radius: 20px;
    font-size: clamp(17px, 5vw, 22px);
  }
}
