/* =========================================================================
   WITRYNA — portfolio stylesheet
   Design concept: "witryna" is Polish for both "website" and "shop window".
   The whole site is built around that pun — every showcase block (hero
   photo, project cards, testimonial cards) is framed like a glowing shop
   window at night, the way small Kraków businesses look on the street.
   ========================================================================= */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,400;0,500;0,600;1,500&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ---------- Design tokens ---------- */
:root {
  --bg: #071b1d;
  --bg-soft: #0d292b;
  --bg-soft-2: #12363a;
  --line: rgba(235, 255, 236, 0.13);
  --line-soft: rgba(235, 255, 236, 0.07);

  --ink: #f3f7dc;
  --ink-dim: #b9d1c2;
  --ink-faint: #7fa09b;

  /* Бирюзовый + тёплый жёлтый */
  --teal: #31dfc5;
  --yellow: #f3e75d;
  --gradient: linear-gradient(120deg, var(--teal), var(--yellow));
  --glow: rgba(49, 223, 197, 0.32);
  --glow-soft: rgba(49, 223, 197, 0.14);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, Segoe UI, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --container: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }
input, textarea { font: inherit; color: inherit; }

/* subtle warm ambient glow behind the whole page, like streetlight bounce */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 15% -10%, var(--glow-soft), transparent 60%),
    radial-gradient(ellipse 50% 35% at 100% 20%, rgba(243, 231, 93, 0.10), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Typography helpers ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--teal);
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--gradient);
}
.accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.section__title { font-size: clamp(28px, 3.6vw, 40px); margin-top: 10px; max-width: 640px; }
.section__lede { color: var(--ink-dim); font-size: 17px; max-width: 560px; margin-top: 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color .25s ease;
}
.btn--primary {
  background: var(--gradient);
  color: var(--bg);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px -8px var(--glow); }
.btn--ghost {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255,255,255,0.02);
}
.btn--ghost:hover { border-color: var(--teal); background: rgba(49,223,197,0.06); }
.btn--block { width: 100%; justify-content: center; }

/* =========================================================================
   HEADER / NAV
   ========================================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background .3s ease, padding .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  padding: 14px 0;
  background: rgba(18, 15, 20, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-color: var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.nav__logo-mark {
  width: 26px; height: 26px;
  border-radius: 6px;
  border: 1.5px solid var(--teal);
  position: relative;
  flex-shrink: 0;
}
.nav__logo-mark::after {
  content: "";
  position: absolute; inset: 5px;
  background: var(--gradient);
  border-radius: 2px;
  opacity: .85;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__link {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14.5px;
  color: var(--ink-dim);
  transition: color .2s ease, background .2s ease;
}
.nav__link:hover { color: var(--ink); background: rgba(255,255,255,0.05); }
.nav__link.active { color: var(--ink); background: rgba(49,223,197,0.10); }
.nav__right { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .05em;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--ink-dim);
  background: transparent;
  transition: all .2s ease;
}
.lang-toggle:hover { border-color: var(--teal); color: var(--ink); }
.nav__burger {
  display: none;
  width: 38px; height: 38px;
  border-radius: 9px;
  border: 1px solid var(--line);
  background: transparent;
  position: relative;
}
.nav__burger span, .nav__burger span::before, .nav__burger span::after {
  content: "";
  position: absolute;
  left: 9px; right: 9px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .25s ease, opacity .25s ease;
}
.nav__burger span { top: 50%; transform: translateY(-50%); }
.nav__burger span::before { top: -7px; }
.nav__burger span::after { top: 7px; }
.nav-open .nav__burger span { background: transparent; }
.nav-open .nav__burger span::before { transform: rotate(45deg) translate(0,0); top: 0; }
.nav-open .nav__burger span::after { transform: rotate(-45deg); top: 0; }

/* =========================================================================
   SIGNATURE COMPONENT — the "window-frame" (witryna)
   Used for: hero photo, project cards, testimonial cards.
   A glass panel with a soft gradient edge-light, like a lit shop window
   seen from the street at dusk.
   ========================================================================= */
.window-frame {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-soft), var(--bg-soft-2));
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.window-frame::before {
  content: "";
  position: absolute; inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(49,223,197,0.5), transparent 40%, transparent 70%, rgba(243,231,93,0.35));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.window-frame::after {
  content: "";
  position: absolute;
  top: -40%; left: -20%;
  width: 55%; height: 180%;
  background: linear-gradient(75deg, transparent, rgba(255,255,255,0.05), transparent);
  transform: rotate(8deg);
  pointer-events: none;
}
.window-frame:hover {
  transform: translateY(-4px);
  border-color: rgba(49,223,197,0.4);
  box-shadow: 0 20px 45px -20px var(--glow);
}

.window-badge {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(18,15,20,0.7);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  color: var(--teal);
  z-index: 2;
}
.window-badge::before {
  content: "";
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--teal);
  margin-right: 6px;
  box-shadow: 0 0 6px 1px var(--teal);
}

/* image placeholder used inside window-frames until real photos are added */
.img-placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 14px),
    linear-gradient(160deg, #241c29, #170f18);
  color: var(--ink-faint);
  font-family: var(--font-mono);
  font-size: 12px;
  text-align: center;
  padding: 20px;
  min-height: 100%;
}
.img-placeholder svg { width: 30px; height: 30px; opacity: .5; margin-bottom: 10px; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  padding: 176px 0 100px;
  z-index: 1;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero__title {
  font-size: clamp(38px, 5vw, 58px);
  margin-top: 18px;
}
.hero__subtitle {
  color: var(--ink-dim);
  font-size: 18px;
  max-width: 480px;
  margin-top: 22px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero__visual .window-frame {
  aspect-ratio: 4 / 5;
}
.hero__visual .img-placeholder { min-height: 100%; height: 100%; }

.stats {
  display: flex;
  gap: 44px;
  margin-top: 68px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.stat__num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
}
.stat__label {
  color: var(--ink-faint);
  font-size: 13px;
  margin-top: 4px;
}

/* =========================================================================
   SECTIONS (generic)
   ========================================================================= */
.section { position: relative; z-index: 1; padding: 96px 0; }
.section--tight { padding: 72px 0; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.divider { height: 1px; background: var(--line); border: 0; }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: start; }
.about__text p { color: var(--ink-dim); margin-top: 18px; font-size: 16px; max-width: 46ch; }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.tag {
  font-family: var(--font-mono);
  font-size: 12.5px;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink-dim);
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 46px;
}
.service-card {
  padding: 30px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.015);
  transition: border-color .3s ease, transform .3s ease;
}
.service-card:hover { border-color: rgba(49,223,197,0.35); transform: translateY(-3px); }
.service-card__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient);
  margin-bottom: 20px;
}
.service-card__icon svg { width: 20px; height: 20px; stroke: var(--bg); }
.service-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.service-card p { color: var(--ink-dim); font-size: 14.5px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; z-index: 1;
  margin: 0 32px;
  max-width: calc(var(--container) - 64px);
  margin-inline: auto;
  padding: 64px 48px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--bg-soft), var(--bg-soft-2));
  border: 1px solid var(--line);
  text-align: center;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 120%, var(--glow-soft), transparent 70%);
}
.cta-band h2 { font-size: clamp(26px, 3.4vw, 36px); position: relative; }
.cta-band p { color: var(--ink-dim); margin: 14px auto 30px; max-width: 46ch; position: relative; }
.cta-band .btn { position: relative; }

/* =========================================================================
   PAGE HEADER (interior pages)
   ========================================================================= */
.page-header { padding: 168px 0 60px; position: relative; z-index: 1; }
.page-header__title { font-size: clamp(34px, 4.6vw, 50px); margin-top: 16px; max-width: 620px; }
.page-header__lede { color: var(--ink-dim); font-size: 17px; margin-top: 18px; max-width: 560px; }

/* ---------- Filter bar (works page) ---------- */
.filter-bar { display: flex; gap: 10px; margin-top: 40px; flex-wrap: wrap; }
.filter-btn {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .04em;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink-dim);
  background: transparent;
  transition: all .2s ease;
}
.filter-btn:hover { color: var(--ink); border-color: var(--teal); }
.filter-btn.active { color: var(--bg); background: var(--gradient); border-color: transparent; }

/* ---------- Works grid ---------- */
.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px;
  margin-top: 42px;
}
.work-card__media { aspect-ratio: 16 / 11; }
.work-card__body { padding: 22px 24px 26px; }
.work-card__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.work-card__tags .tag { font-size: 11px; padding: 4px 10px; }
.work-card__body h3 { font-size: 19px; font-weight: 600; margin-bottom: 8px; }
.work-card__body p { color: var(--ink-dim); font-size: 14.5px; margin-bottom: 16px; }
.work-card__link { font-family: var(--font-mono); font-size: 13px; color: var(--teal); display: inline-flex; align-items: center; gap: 6px; }
.work-card__link svg { width: 13px; height: 13px; transition: transform .2s ease; }
.work-card:hover .work-card__link svg { transform: translate(3px, -3px); }
.work-card.is-hidden { display: none; }

/* =========================================================================
   TESTIMONIALS
   ========================================================================= */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  margin-top: 46px;
}
.testi-card { padding: 30px 28px; display: flex; flex-direction: column; height: 100%; }
.testi-card__mark { font-family: var(--font-display); font-style: italic; font-size: 46px; color: var(--teal); line-height: 1; opacity: .7; }
.testi-card__stars { display: flex; gap: 3px; margin: 14px 0 16px; }
.testi-card__stars svg { width: 15px; height: 15px; fill: var(--teal); }
.testi-card__quote { color: var(--ink-dim); font-size: 15px; flex-grow: 1; }
.testi-card__footer { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line-soft); }
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--bg);
  flex-shrink: 0;
}
.testi-card__name { font-size: 14.5px; font-weight: 600; }
.testi-card__biz { font-size: 12.5px; color: var(--ink-faint); }

.clients-strip {
  margin-top: 90px;
  padding-top: 46px;
  border-top: 1px solid var(--line);
}
.clients-strip p.eyebrow { margin-bottom: 26px; }
.clients-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.client-chip {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-faint);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
}

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; }
.info-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line-soft); }
.info-item:first-child { padding-top: 0; }
.info-item__icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 10px;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
}
.info-item__icon svg { width: 17px; height: 17px; stroke: var(--teal); }
.info-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.info-item p, .info-item a { font-size: 14.5px; color: var(--ink-dim); }
.info-item a:hover { color: var(--teal); }

.social-row { display: flex; gap: 10px; margin-top: 30px; }
.social-chip {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s ease, background .2s ease;
}
.social-chip svg { width: 17px; height: 17px; stroke: var(--ink-dim); }
.social-chip:hover { border-color: var(--teal); background: rgba(49,223,197,0.08); }

.contact-form { padding: 38px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 9px;
}
.form-group input, .form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  font-size: 14.5px;
  color: var(--ink);
  transition: border-color .2s ease, background .2s ease;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: rgba(255,255,255,0.05);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 12.5px; color: var(--ink-faint); margin-top: 14px; text-align: center; }
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 15px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(49,223,197,0.35);
  background: rgba(49,223,197,0.08);
  font-size: 14px;
  margin-bottom: 20px;
}
.form-success.is-visible { display: flex; }
.form-success svg { width: 16px; height: 16px; stroke: var(--teal); flex-shrink: 0; }
.form-error {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 15px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(243, 231, 93, 0.4);
  background: rgba(243, 231, 93, 0.08);
  font-size: 14px;
  margin-bottom: 20px;
}
.form-error.is-visible { display: flex; }
.form-error svg { width: 16px; height: 16px; stroke: var(--yellow); flex-shrink: 0; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer {
  position: relative; z-index: 1;
  padding: 60px 0 34px;
  border-top: 1px solid var(--line);
  margin-top: 60px;
}
.footer__top { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; align-items: flex-start; margin-bottom: 40px; }
.footer__tagline { color: var(--ink-faint); font-size: 14px; max-width: 320px; margin-top: 10px; }
.footer__links { display: flex; gap: 40px; flex-wrap: wrap; }
.footer__col h5 { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 14px; }
.footer__col a, .footer__col p { display: block; font-size: 14px; color: var(--ink-dim); margin-bottom: 9px; }
.footer__col p a { display: inline; color: inherit; }
.footer__col a:hover { color: var(--teal); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; border-top: 1px solid var(--line-soft); flex-wrap: wrap; gap: 12px; }
.footer__bottom p { font-size: 12.5px; color: var(--ink-faint); }

/* =========================================================================
   SCROLL REVEAL
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .window-frame, .service-card, .btn { transition: none; }
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 360px; }
  .about, .contact-grid { grid-template-columns: 1fr; }
  .footer__top { flex-direction: column; }
}

@media (max-width: 760px) {
  .container { padding: 0 22px; }
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .nav-open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 62px; left: 22px; right: 22px;
    background: rgba(18,15,20,0.97);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
  }
  .nav-open .nav__link { padding: 12px 14px; }
  .hero { padding: 140px 0 70px; }
  .section, .cta-band { padding-top: 64px; padding-bottom: 64px; }
  .page-header { padding: 130px 0 44px; }
  .stats { gap: 28px; }
  .contact-form { padding: 26px; }
  .cta-band { padding: 46px 26px; margin: 0 18px; }
}
/* Плавная смена языка */
.site-header,
main,
.site-footer {
  transition: opacity .18s ease, transform .18s ease;
}

body.language-is-changing .site-header,
body.language-is-changing main,
body.language-is-changing .site-footer {
  opacity: 0;
  transform: translateY(8px);
}

/* Вместо личной фотографии */
.hero-studio-art {
  height: 100%;
  min-height: 420px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  background:
    radial-gradient(circle at 18% 15%, rgba(49, 223, 197, .34), transparent 32%),
    radial-gradient(circle at 92% 85%, rgba(243, 231, 93, .28), transparent 35%),
    linear-gradient(145deg, #0e3437, #071719 72%);
}

.hero-studio-art::before,
.hero-studio-art::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.hero-studio-art::before {
  width: 230px;
  height: 230px;
  right: -60px;
  top: 80px;
  background: var(--teal);
  opacity: .8;
}

.hero-studio-art::after {
  width: 150px;
  height: 150px;
  left: 22px;
  bottom: 48px;
  background: var(--yellow);
}

.hero-studio-art__label,
.hero-studio-art__footer {
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.hero-studio-art__label {
  color: var(--teal);
}

.hero-studio-art__title {
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 74px);
  line-height: .82;
  letter-spacing: -.06em;
}

.hero-studio-art__title i {
  color: var(--yellow);
  font-weight: 400;
}

.hero-studio-art__footer {
  color: var(--ink-dim);
  display: flex;
  justify-content: space-between;
}

@media (max-width: 760px) {
  .hero__visual {
    max-width: none;
  }

  .hero-studio-art {
    min-height: 320px;
    padding: 24px;
  }

  .hero__visual .window-frame {
    aspect-ratio: 1.25 / 1;
  }

  .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .stat__num {
    font-size: 25px;
  }

  .stat__label {
    font-size: 11px;
  }
}
