:root {
  --max: 1120px;
  --bg: #f6f4f1;
  --bg-elevated: #ffffff;
  --bg-glow-1: rgba(232, 86, 10, 0.09);
  --bg-glow-2: rgba(63, 149, 197, 0.08);
  --text: #16151a;
  --muted: #6f6e74;
  --border: rgba(22, 21, 26, 0.09);
  --border-strong: rgba(22, 21, 26, 0.14);
  --accent: #e8560a;
  --accent-hover: #cf4c08;
  --accent-soft: #fff3eb;
  --accent-ring: rgba(232, 86, 10, 0.28);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --mat-blue: #3f95c5;
  --mat-size: 20px;
  --surface: var(--bg-elevated);
  --surface-muted: #faf9f7;
  --surface-alt: #edecea;
  --success: #0d7a4c;
  --error: #c41e1e;
  --warn: #9a5b00;
  --shadow-sm: 0 1px 2px rgba(22, 21, 26, 0.04);
  --shadow-md: 0 16px 48px rgba(22, 21, 26, 0.09);
  --shadow-card: 0 2px 4px rgba(22, 21, 26, 0.03), 0 12px 32px rgba(22, 21, 26, 0.06);
  --shadow-nav: 0 8px 32px rgba(22, 21, 26, 0.06);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 32px;
  --space-8: 40px;
  --space-9: 48px;
  --space-10: 64px;
  --space-11: 80px;
  --page-pad-y: 56px;
  --page-pad-bottom: 88px;
  --page-shell-gap: 32px;
  --page-content-gap: 28px;
  --section-y: 72px;
  --section-y-lg: 96px;
  --site-header-h: 72px;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: var(--font-sans);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-gutter: stable;
}

body {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 10% -10%, var(--bg-glow-1), transparent 55%),
    radial-gradient(ellipse 60% 40% at 95% 5%, var(--bg-glow-2), transparent 50%);
  background-attachment: fixed;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding-top: var(--site-header-h);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

.full-bleed {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-inline: clamp(16px, 4vw, 32px);
  box-sizing: border-box;
}

.wrap > main {
  flex: 1 0 auto;
}

.wrap > main.home {
  overflow: visible;
}

/* ─── Page shell (inner pages) ─── */
.page {
  padding: var(--page-pad-y) 0 var(--page-pad-bottom);
}

.page__shell {
  display: flex;
  flex-direction: column;
  gap: var(--page-shell-gap);
}

.page__shell--narrow {
  max-width: 760px;
}

.page__content {
  display: flex;
  flex-direction: column;
  gap: var(--page-content-gap);
}

.page-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
}

.page-crumbs__link {
  color: var(--muted);
  transition: color 0.15s ease;
}

.page-crumbs__link:hover {
  color: var(--accent);
}

.page-crumbs__sep {
  color: var(--border-strong);
  user-select: none;
}

.page-crumbs__current {
  color: var(--text);
  font-weight: 500;
}

.page-header {
  display: grid;
  gap: var(--space-3);
  max-width: 42rem;
}

.page-header__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0;
}

.page-header__title--solo {
  max-width: none;
}

.page-header__lead {
  margin: 0;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 56ch;
}

.page-back {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s ease, color 0.15s ease;
}

.page-back:hover {
  color: var(--accent);
  border-color: var(--accent-ring);
}

/* ─── Home sections ─── */
.home-section {
  padding-block: var(--section-y);
}

.home-section--hero {
  position: relative;
  isolation: isolate;
  padding-top: var(--space-9);
  padding-bottom: var(--section-y);
  overflow: visible;
}

.home-section--hero::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  height: calc(100% + 180px);
  pointer-events: none;
  background:
    radial-gradient(ellipse 110% 95% at 92% 36%, rgba(232, 86, 10, 0.13), transparent 74%),
    radial-gradient(ellipse 80% 70% at 68% 48%, var(--bg-glow-1), transparent 66%),
    radial-gradient(ellipse 55% 50% at 8% 90%, var(--bg-glow-2), transparent 58%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 72%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 72%, transparent 100%);
}

.home-section--lined {
  border-block: 1px solid var(--border);
}

/* ─── Surfaces & buttons ─── */
.surface {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow--accent {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 20px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--accent-ring);
  outline-offset: 2px;
}

.btn--primary {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 12px rgba(232, 86, 10, 0.32);
  transition: border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.btn--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.btn--secondary {
  color: var(--text);
  background: var(--surface);
  border-color: var(--border);
}

.btn--secondary:hover {
  color: var(--accent);
  border-color: var(--accent-ring);
}

.btn--soft {
  color: var(--accent);
  background: var(--accent-soft);
  border-color: var(--accent-ring);
}

.btn--soft:hover {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.btn--sm {
  padding: 8px 14px;
  font-size: 13px;
}

.btn--lg {
  padding: 14px 24px;
  font-size: 15px;
}

.btn--ghost {
  color: var(--text);
  background: transparent;
  border-color: var(--border-strong);
}

.btn--ghost:hover {
  color: var(--accent);
  border-color: var(--accent-ring);
  background: var(--accent-soft);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal--d1 { transition-delay: 0.08s; }
.reveal--d2 { transition-delay: 0.16s; }
.reveal--d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero__copy > * {
    animation: none;
  }

  .service-card:hover,
  .shop-card:hover {
    transform: none;
  }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  height: var(--site-header-h);
  padding: 0;
  margin: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-nav);
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  max-width: var(--max);
  height: 100%;
  min-height: var(--site-header-h);
  margin: 0 auto;
  padding: var(--space-3) clamp(16px, 4vw, 32px);
  min-width: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  flex-shrink: 1;
}

.brand:hover,
.brand:focus-visible {
  position: relative;
  z-index: 10;
}

.brand-logo {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-sans);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

.brand-part {
  display: inline-flex;
  align-items: baseline;
}

.brand-part--lab {
  color: var(--text);
}

.brand-part--studio {
  color: var(--accent);
}

.ch {
  display: inline-block;
}

.brand-fold {
  display: inline-grid;
  grid-template-columns: 0fr;
  vertical-align: bottom;
  transition: grid-template-columns 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-fold__text {
  overflow: hidden;
  white-space: nowrap;
  min-width: 0;
}

.brand:hover .brand-fold,
.brand:focus-visible .brand-fold {
  grid-template-columns: 1fr;
}

html:not(.brand-intro) .brand:not(:hover):not(:focus-visible) .brand-fold {
  grid-template-columns: 0fr;
}

@media (prefers-reduced-motion: reduce) {
  .brand-fold {
    grid-template-columns: 1fr;
    transition: none;
  }
}

html.brand-intro .brand-fold,
.brand.is-intro .brand-fold {
  grid-template-columns: 1fr;
  transition: none;
}

.nav__end {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}

.nav-link,
.nav-gallery {
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover,
.nav-gallery:hover {
  color: var(--text);
  background: var(--surface-muted);
}

.nav-cart {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.nav-cart.has-items {
  display: inline-flex;
  color: var(--accent);
  background: var(--accent-soft);
}

.nav-cart:hover,
.nav-cart.has-items:hover {
  color: var(--accent-hover);
}

.nav-cart__count {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: var(--accent);
  border-radius: var(--radius-pill);
}

.nav-cart.has-items .nav-cart__count:not(:empty) {
  display: inline-flex;
}

.nav-cta,
.nav-phone {
  margin-left: var(--space-2);
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(232, 86, 10, 0.28);
  transition: background 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-cta:hover,
.nav-phone:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  color: #fff;
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  margin-left: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-burger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav.is-open .nav-burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav.is-open .nav-burger span:nth-child(2) {
  opacity: 0;
}

.nav.is-open .nav-burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.contact-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.contact-icons__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid transparent;
  background: transparent;
  transition: opacity 0.15s ease;
}

.contact-icons__link img {
  display: block;
  width: 28px;
  height: 28px;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: opacity 0.3s ease;
}

.contact-icons__link:hover img {
  opacity: 0.9;
}

/* Hero */
.hero {
  position: relative;
  padding: 0;
  overflow: visible;
}

.hero__glow {
  display: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
  gap: clamp(var(--space-8), 5vw, var(--space-12));
  align-items: center;
}

.hero__copy {
  min-width: 0;
  max-width: 100%;
}

@media (min-width: 901px) {
  .hero__copy {
    padding-inline-end: var(--space-5);
  }
}

.hero__copy > * {
  animation: hero-rise 0.75s var(--ease-out) backwards;
}

.hero__copy > *:nth-child(2) { animation-delay: 0.07s; }
.hero__copy > *:nth-child(3) { animation-delay: 0.14s; }
.hero__copy > *:nth-child(4) { animation-delay: 0.21s; }

.hero-meta {
  display: inline-flex;
  margin-top: 30px;
  margin-bottom: var(--space-5);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-ring);
  border-radius: var(--radius-pill);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.15rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: var(--space-5);
  overflow-wrap: normal;
  hyphens: none;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

@media (min-width: 901px) and (max-width: 1200px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
    gap: var(--space-7);
  }

  .hero-orbit {
    --orbit-box: min(320px, 100%);
  }
}

.hero-desc {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: var(--space-6);
  max-width: 34ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

.hero-cta {
  /* legacy alias */
}

.hero__visual {
  justify-self: end;
  width: 100%;
  max-width: 400px;
  min-width: 0;
}

.hero-orbit {
  --orbit-box: 380px;
  position: relative;
  width: var(--orbit-box);
  height: var(--orbit-box);
  max-width: 100%;
  margin: 0 auto;
  overflow: visible;
}

.hero-orbit__wrap {
  --orbit-dur: 28s;
  --orbit-delay: 0s;
  --orbit-start: 0%;
  --orbit-icon: 44px;
  --orbit-sat-w: 52px;
  --orbit-name: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-orbit__wrap--print {
  z-index: 3;
  width: calc(46% - 5px);
  aspect-ratio: 1;
  --orbit-dur: 22s;
  --orbit-delay: -5s;
  --orbit-start: 75%;
  --orbit-icon: 34px;
  --orbit-sat-w: 42px;
  --orbit-name: 9px;
}

.hero-orbit__wrap--scan {
  z-index: 2;
  width: 66%;
  aspect-ratio: 1;
  --orbit-dur: 36s;
  --orbit-delay: -12s;
  --orbit-start: 0%;
  --orbit-icon: 40px;
  --orbit-sat-w: 48px;
  --orbit-name: 10px;
}

.hero-orbit__wrap--laser {
  z-index: 1;
  width: calc(86% + 5px);
  aspect-ratio: 1;
  --orbit-dur: 28s;
  --orbit-delay: 0s;
  --orbit-start: 25%;
  --orbit-icon: 44px;
  --orbit-sat-w: 52px;
  --orbit-name: 11px;
}

.hero-orbit__ring {
  position: absolute;
  inset: 0;
  border: 1px solid #f0f0f2;
  border-radius: 50%;
}

.hero-orbit__sat {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: var(--orbit-sat-w);
  offset-path: circle(50% at 50% 50%);
  offset-anchor: calc(var(--orbit-sat-w) / 2) calc(var(--orbit-icon) / 2);
  offset-distance: var(--orbit-start);
  offset-rotate: 0deg;
  animation: hero-orbit-path var(--orbit-dur) linear infinite;
  animation-delay: var(--orbit-delay);
}

.hero-orbit__wrap--scan .hero-orbit__sat {
  animation-direction: reverse;
}

.hero-orbit__core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  transform: translate(-50%, -50%);
}

.hero-orbit__core-label {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--accent);
}

.hero-orbit__core-sub {
  margin-top: 2px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-orbit__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--orbit-icon);
  height: var(--orbit-icon);
  color: #c45a00;
  background: #fff;
  border: 1px solid #ffe0b2;
  border-radius: 50%;
}

.hero-orbit__icon svg {
  width: calc(var(--orbit-icon) * 0.5);
  height: calc(var(--orbit-icon) * 0.5);
}

.hero-orbit__name {
  font-size: var(--orbit-name);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

@keyframes hero-orbit-path {
  from { offset-distance: var(--orbit-start); }
  to { offset-distance: calc(var(--orbit-start) + 100%); }
}

.phone-hero {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: color 0.15s;
}

.phone-hero:hover {
  color: var(--accent);
}

/* Services */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}

.service-card {
  position: relative;
  padding: var(--space-7) var(--space-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-ring);
  box-shadow: var(--shadow-card);
}

.service-card--link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.service-card--link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.service-card--current {
  border-color: var(--accent-ring);
  box-shadow: var(--shadow-card);
}

.service-card__meta {
  margin: var(--space-2) 0 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

.works-category-cards {
  margin-bottom: var(--space-7);
}

.page--works-category .works-category-cards {
  margin-bottom: var(--space-6);
}

.works-category-cards__grid {
  margin-bottom: 0;
}

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-5);
  color: #c45a00;
  background: #fff;
  border: 1px solid #ffe0b2;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}

.service-card__text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Section head (home blocks) */
.section-kicker {
  display: block;
  margin-bottom: var(--space-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-head {
  margin-bottom: var(--space-7);
}

.section-head--home {
  margin-bottom: var(--space-7);
}

.section-head h1,
.section-head h2,
.section-head--home h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section-head h1 {
  font-size: clamp(28px, 4vw, 36px);
  margin-bottom: var(--space-2);
}

.section-head h2,
.section-head--home h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
}

.section-head p,
.section-head--home p {
  font-size: 15px;
  color: var(--muted);
  max-width: 56ch;
  line-height: 1.6;
}

.section-head__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  transition: opacity 0.15s ease;
}

.section-head__link:hover {
  opacity: 0.8;
}

.shop-more__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
}

.shop-more__link:hover {
  text-decoration: underline;
}

.section-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.home .services.home-section {
  padding-bottom: var(--space-5);
}

.home-section--shop {
  padding-top: var(--space-5);
  padding-bottom: var(--space-5);
}

.home-section--faq {
  padding-top: var(--space-5);
}

.section-head--shop {
  margin-bottom: var(--space-5);
}

.shop-grid--home {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  align-items: stretch;
}

/* Shop */
.shop-carousel {
  --carousel-cols: 3;
  position: relative;
}

.shop-carousel__viewport {
  overflow: visible;
}

.shop-carousel__track {
  display: flex;
  align-items: stretch;
  gap: var(--space-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-block: var(--space-2) var(--space-5);
}

.shop-carousel__track::-webkit-scrollbar {
  display: none;
}

.shop-carousel__track .shop-card {
  flex: 0 0 calc((100% - (var(--carousel-cols) - 1) * var(--space-4)) / var(--carousel-cols));
  min-width: calc((100% - (var(--carousel-cols) - 1) * var(--space-4)) / var(--carousel-cols));
  scroll-snap-align: start;
  height: auto;
  align-self: stretch;
}

.shop-carousel__nav {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.shop-carousel__nav[hidden] {
  display: none;
}

.shop-carousel__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  font-size: 18px;
  line-height: 1;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.shop-carousel__btn:hover:not(:disabled) {
  color: var(--accent);
  border-color: var(--accent-ring);
}

.shop-carousel__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
  padding-block: var(--space-2) var(--space-4);
  align-items: stretch;
}

.shop-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: visible;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.shop-card__media {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--surface-alt);
  overflow: hidden;
}

.shop-card__media--expand {
  width: 100%;
  padding: 0;
  border: none;
  cursor: zoom-in;
  font: inherit;
  text-align: left;
}

.shop-card__media--expand:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.shop-grid.is-viewing .shop-card:not(.is-active) {
  opacity: 0.45;
  transition: opacity 0.25s ease;
}

.shop-grid.is-viewing .shop-card.is-active {
  opacity: 1;
}

.shop-card.is-active {
  box-shadow: 0 0 0 2px var(--accent);
}

.shop-card.is-expanded {
  grid-column: 1 / -1;
}

.shop-card.is-expanded .shop-card__media--expand {
  aspect-ratio: auto;
  height: min(56vh, 520px);
  cursor: default;
}

.shop-card.is-expanded .shop-card__gallery-main {
  object-fit: contain;
}

.shop-card__gallery {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.shop-card__gallery-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--muted);
  box-shadow: 0 1px 4px rgba(26, 25, 28, 0.1);
  cursor: pointer;
}

.shop-card__gallery-close:hover {
  color: var(--text);
  background: #fff;
}

.shop-card__gallery-close[hidden] {
  display: none;
}

.shop-photos-badge,
.shop-card__photos-badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  padding: 4px 9px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  background: rgba(26, 25, 28, 0.72);
  border-radius: 999px;
  pointer-events: none;
}

.shop-card__gallery-main {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-card__media--png .shop-card__gallery-main {
  object-fit: contain;
}

.shop-card__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 10px 10px;
  border-top: 1px solid var(--border);
  background: #fff;
}

.shop-card__thumb {
  flex: 0 0 auto;
  width: 52px;
  height: 40px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  background: #f0f0f2;
  overflow: hidden;
  cursor: pointer;
}

.shop-card__thumb.is-active {
  border-color: var(--accent);
}

.shop-card__thumb--png {
  background-color: var(--mat-blue);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.42) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.42) 1px, transparent 1px);
  background-size: 12px 12px, 12px 12px;
}

.shop-card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-card__thumb--png img {
  object-fit: contain;
}

.shop-card__media--png {
  background-color: var(--mat-blue);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.42) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.42) 1px, transparent 1px);
  background-size: 20px 20px, 20px 20px;
}

.shop-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-card__media--png img {
  object-fit: contain;
}

.shop-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 16px 16px;
  flex: 1 1 auto;
  min-height: 0;
}

.shop-card__title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
}

.shop-card__title a {
  color: inherit;
  text-decoration: none;
}

.shop-card__title a:hover {
  color: var(--accent);
}

.shop-card__desc {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shop-card__sizes {
  margin: 10px 0 0;
}

.shop-card__sizes--card {
  display: flex;
  flex-direction: column;
}

.shop-card__sizes-label {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.shop-sizes {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.shop-sizes--card .shop-sizes__item,
.shop-sizes--product .shop-sizes__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 10px 12px;
  width: 100%;
  padding: 7px 0;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text);
  background: none;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid var(--border);
}

.shop-sizes--card .shop-sizes__item[hidden],
.shop-sizes--product .shop-sizes__item[hidden] {
  display: none !important;
}

.shop-sizes--card .shop-sizes__item {
  font-size: 12px;
  padding: 6px 0;
}

.shop-sizes--card .shop-sizes__item:last-child,
.shop-sizes--product .shop-sizes__item:last-child {
  border-bottom: none;
}

.shop-sizes__label {
  min-width: 0;
}

.shop-sizes--card .shop-sizes__label {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shop-sizes__price {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-end;
  gap: 5px;
  font-size: inherit;
  font-weight: 600;
  white-space: nowrap;
}

.shop-sizes--product .shop-sizes__price {
  font-size: 14px;
}

.shop-sizes__price-old {
  font-weight: 400;
  color: var(--muted);
}

.shop-sizes__price-sale {
  color: var(--accent);
}

.shop-sizes__item--custom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  grid-template-columns: none;
  padding-top: 8px;
  border-bottom: none;
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
}

.shop-sizes__custom-label {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.shop-sizes--product .shop-sizes__item--custom {
  padding-top: 10px;
  font-size: 14px;
}

.shop-sizes__check {
  flex-shrink: 0;
  color: var(--accent);
}

.shop-sizes__item--toggle {
  display: block;
  grid-template-columns: none;
  padding: 6px 0 0;
  border-bottom: none;
}

.shop-sizes-more__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--accent);
  cursor: pointer;
}

.shop-sizes-more__btn::before {
  content: '+';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  font-size: 13px;
  line-height: 1;
  color: var(--accent);
  border: 1px solid var(--accent-ring);
  border-radius: 4px;
}

.shop-sizes-more__btn[aria-expanded='true']::before {
  content: '−';
}

.shop-sizes-more__btn:hover {
  color: #c45a00;
}

.shop-sizes-more__btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.shop-sizes-more__label--close[hidden] {
  display: none;
}

.shop-card__sizes--collapsible > .shop-sizes--card > .shop-sizes__item--toggle {
  border-top: none;
}

.shop-card__sizes--collapsible > .shop-sizes--card > .shop-sizes__item:not(.shop-sizes__item--toggle):last-of-type {
  border-bottom: none;
}

.shop-card__sizes--collapsible > .shop-sizes--card > .shop-sizes__item--extra[hidden] + .shop-sizes__item--extra[hidden] {
  border-top: none;
}

.shop-sizes--priced {
  gap: 0;
}

.shop-card__price {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  font-size: 15px;
}

.shop-card__price-old {
  color: var(--muted);
}

.shop-card__price-sale {
  color: var(--accent);
  font-size: 1.05rem;
}

.shop-card__discount {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  border-radius: var(--radius-sm);
  padding: 2px 8px;
}

.shop-card__cta {
  margin-top: auto;
  align-self: flex-start;
}

.shop-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 6px;
}

.shop-card__actions .shop-card__cta {
  margin-top: 0;
}

.shop-empty {
  color: var(--muted);
  font-size: 15px;
}

/* Works */

.works-noscript {
  display: none;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.works-noscript a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.works-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.works-tabs--jump {
  position: sticky;
  top: calc(var(--header-h, 64px) + 8px);
  z-index: 5;
  padding-block: 8px;
  margin-bottom: 28px;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(8px);
}

.works-sections {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 64px);
}

.works-section__head {
  margin-bottom: 20px;
}

.works-section__head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.works-category-intro {
  max-width: 68ch;
  margin-bottom: var(--space-6);
}

.works-category-intro p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

.works-category-intro p:last-child {
  margin-bottom: 0;
}

.works-hub {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 40px);
}

.works-hub__head h2 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.works-hub__head h2 a {
  color: inherit;
  text-decoration: none;
}

.works-hub__head h2 a:hover {
  color: var(--accent);
}

.works-hub__head p {
  margin: 0 0 12px;
  max-width: 62ch;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.works-hub__link {
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.works-hub__link:hover {
  text-decoration: underline;
}

.works-viewer-slot {
  display: none;
}

.works-tab {
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--surface);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.works-tab:hover {
  color: var(--text);
  border-color: var(--border-strong);
}

.works-tab.is-active {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 2px 10px rgba(232, 86, 10, 0.28);
}

.works-tab:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 18px;
  row-gap: 36px;
  max-width: 1056px;
  overflow-anchor: none;
}

.works-grid.is-viewing .work-card-wrap:not(:has(.work-card.is-active)) {
  opacity: 0.45;
  transition: opacity 0.25s ease;
}

.works-grid.is-viewing .work-card-wrap:has(.work-card.is-active) {
  opacity: 1;
}

.works-empty {
  grid-column: 1 / -1;
  font-size: 14px;
  color: var(--muted);
}

.work-card-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  min-width: 0;
}

.work-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
  outline: none;
  min-width: 0;
  scroll-margin-top: 8px;
}

.work-card__thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-alt);
  aspect-ratio: 4 / 3;
}

.work-card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.work-card__thumb--png {
  background-color: var(--mat-blue);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.42) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.42) 1px, transparent 1px);
  background-size: var(--mat-size) var(--mat-size), var(--mat-size) var(--mat-size);
}

.work-card__thumb--png img {
  object-fit: contain;
}

.work-card__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 25, 28, 0);
  transition: background 0.25s ease;
}

.work-card:hover .work-card__thumb img,
.work-card:focus-visible .work-card__thumb img {
  transform: scale(1.03);
}

.work-card:hover .work-card__thumb::after,
.work-card:focus-visible .work-card__thumb::after {
  background: rgba(26, 25, 28, 0.08);
}

.work-card.is-active .work-card__thumb {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.work-card:focus-visible .work-card__thumb {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.work-card__count {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  background: rgba(26, 25, 28, 0.72);
  border-radius: var(--radius);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.work-card:hover .work-card__count,
.work-card:focus-visible .work-card__count,
.work-card.is-active .work-card__count {
  opacity: 1;
  transform: translateY(0);
}

.work-card__title {
  display: block;
  flex: 1 1 auto;
  margin-top: 12px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.45;
  transition: color 0.15s ease;
}

.work-card__more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  transition: opacity 0.15s ease, gap 0.15s ease;
}

.work-card__more::after {
  content: '→';
  font-size: 13px;
  line-height: 1;
  transition: transform 0.15s ease;
}

.work-card__more:hover,
.work-card__more:focus-visible {
  text-decoration: none;
}

.work-card__more:hover::after,
.work-card__more:focus-visible::after {
  transform: translateX(2px);
}

.work-card:hover .work-card__title,
.work-card.is-active .work-card__title,
.work-card-wrap:has(.work-card__more:hover) .work-card__title {
  color: var(--text);
}

/* Viewer panel */
.works-viewer {
  grid-column: 1 / -1;
  display: grid;
  grid-template-rows: 0fr;
  margin-top: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  overflow-anchor: none;
  scroll-margin-top: 8px;
  transition:
    grid-template-rows 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    margin-top 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.1s ease;
}

.works-viewer.is-open {
  grid-template-rows: 1fr;
  margin-top: 8px;
  opacity: 1;
  pointer-events: auto;
  transition:
    grid-template-rows 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    margin-top 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.2s ease 0.05s;
}

.works-viewer__inner {
  overflow: hidden;
  min-height: 0;
}

.works-viewer__panel {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.works-viewer__stage {
  width: 100%;
}

.works-viewer__frame {
  position: relative;
  width: 100%;
  height: min(62vh, 560px);
  background: #f0f0f2;
  overflow: hidden;
}

.works-viewer__frame--png {
  background-color: var(--mat-blue);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.42) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.42) 1px, transparent 1px);
  background-size: var(--mat-size) var(--mat-size), var(--mat-size) var(--mat-size);
}

.works-viewer__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.works-viewer__toolbar {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
}

.works-viewer__counter {
  padding: 5px 10px;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  box-shadow: 0 1px 4px rgba(26, 25, 28, 0.1);
}

.works-viewer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--muted);
  box-shadow: 0 1px 4px rgba(26, 25, 28, 0.1);
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
}

.works-viewer__close:hover {
  color: var(--text);
  background: #fff;
}

.works-viewer__close:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.works-viewer__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  box-shadow: 0 1px 4px rgba(26, 25, 28, 0.12);
  cursor: pointer;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 0.2s ease, background 0.15s ease, color 0.15s ease;
}

.works-viewer__nav--prev {
  left: 12px;
}

.works-viewer__nav--next {
  right: 12px;
}

.works-viewer__frame:hover .works-viewer__nav,
.works-viewer__nav:focus-visible {
  opacity: 1;
}

.works-viewer__nav:hover:not(:disabled) {
  background: var(--accent);
  color: #fff;
}

.works-viewer__nav:disabled {
  opacity: 0 !important;
  cursor: default;
}

.works-viewer__nav[hidden] {
  display: none;
}

.works-viewer__foot {
  padding: 14px 16px 16px;
  border-top: 1px solid var(--border);
}

.works-viewer__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text);
}

.works-viewer__description {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.works-more {
  margin: 36px 0 0;
  text-align: center;
}

.works-more__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.works-more__btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.works-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.works-pagination__pages {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.works-pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.works-pagination__btn--arrow {
  width: 40px;
  padding: 0;
}

.works-pagination__btn:hover:not(:disabled):not(.is-active) {
  border-color: var(--text);
}

.works-pagination__btn.is-active {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.works-pagination__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

@media (max-width: 900px) {
  .shop-carousel {
    --carousel-cols: 2;
  }

  .shop-grid--home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .works-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .shop-carousel {
    --carousel-cols: 1;
  }

  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .works-grid,
  .shop-grid,
  .shop-grid--home {
    grid-template-columns: 1fr;
  }

  .works-viewer__frame {
    height: min(50vh, 420px);
  }

  .works-viewer__nav {
    width: 36px;
    height: 36px;
    opacity: 1;
  }

  .works-viewer__foot {
    padding: 12px 14px 14px;
  }
}

@media (hover: none) {
  .work-card__count {
    opacity: 1;
    transform: translateY(0);
  }

  .works-viewer__nav {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .work-card__thumb img,
  .work-card__thumb::after,
  .work-card__count,
  .works-viewer {
    transition: none;
  }

  .hero-orbit__sat {
    animation: none;
    offset-distance: var(--orbit-start);
  }
}

/* Work detail page */
.work-page__desc {
  margin-top: var(--space-4);
  max-width: 100%;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

.work-page__photos {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.work-page__figure {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.work-page__figure--png {
  background-color: var(--mat-blue);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.42) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.42) 1px, transparent 1px);
  background-size: var(--mat-size) var(--mat-size), var(--mat-size) var(--mat-size);
}

.work-page__figure img {
  display: block;
  width: 100%;
  height: auto;
}

.work-page__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3) var(--space-4);
  margin-top: var(--space-7);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
  font-size: 14px;
}

.work-page__cta a:not(.btn) {
  font-weight: 600;
  color: var(--accent);
}

.work-page__cta a:not(.btn):hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.work-page__cta-sep {
  color: var(--border-strong);
}

.shop-product-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: var(--space-7);
  align-items: start;
}

.shop-product-page__price {
  margin: 0 0 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  font-size: 1.25rem;
}

.shop-product-page__desc {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.shop-card__sizes--product {
  margin: 0 0 20px;
}

.shop-product-options {
  display: grid;
  gap: var(--space-5);
  margin: 0 0 24px;
}

.shop-product-options__title {
  margin: 0 0 var(--space-4);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.shop-product-options__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: var(--space-3);
  margin: 0;
  padding: 0;
  list-style: none;
}

.shop-product-options__grid > li {
  display: flex;
  min-width: 0;
}

.shop-product-options__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  width: 100%;
  min-height: 100%;
  padding: 14px 16px;
  font: inherit;
  text-align: left;
  color: inherit;
  cursor: pointer;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.shop-product-options__item:hover {
  border-color: var(--accent-ring);
}

.shop-product-options__item:focus-visible {
  outline: 2px solid var(--accent-ring);
  outline-offset: 2px;
}

.shop-product-options__item.is-selected {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 0 0 1px var(--accent-ring);
}

.shop-product-options__size {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}

.shop-product-options__price {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.shop-product-options__price-old {
  font-weight: 400;
  color: var(--muted);
}

.shop-product-options__price-sale {
  color: var(--accent);
}

.shop-product-options__custom {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  width: 100%;
  padding: var(--space-5);
  font: inherit;
  text-align: left;
  color: inherit;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent-soft) 0%, #fff 100%);
  border: 1px solid var(--accent-ring);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.shop-product-options__custom:hover {
  border-color: var(--accent);
}

.shop-product-options__custom:focus-visible {
  outline: 2px solid var(--accent-ring);
  outline-offset: 2px;
}

.shop-product-options__custom.is-selected {
  border-color: var(--accent);
  background: linear-gradient(135deg, #ffe8d8 0%, #fff8f3 100%);
  box-shadow: 0 0 0 1px var(--accent-ring);
}

.shop-product-options__custom-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  color: var(--accent);
  background: #fff;
  border: 1px solid var(--accent-ring);
  border-radius: 50%;
}

.shop-product-options__custom-body {
  min-width: 0;
}

.shop-product-options__custom-title {
  display: block;
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}

.shop-product-options__custom-text {
  display: block;
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

.shop-card__sizes--product .shop-card__sizes-label,
.shop-card__sizes--card .shop-card__sizes-label {
  margin-bottom: 6px;
}

.shop-sizes--product .shop-sizes__item {
  padding: 9px 0;
  font-size: 14px;
  line-height: 1.45;
}

.shop-sizes--product .shop-sizes__label {
  font-weight: 400;
}

.shop-sizes--product .shop-sizes__price-sale {
  font-size: 14px;
}

.shop-product-page__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border);
}

.shop-product-page__order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  border-radius: var(--radius);
  text-decoration: none;
}

.shop-product-page__order:hover {
  filter: brightness(1.05);
}

.shop-buy {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.shop-buy__size-hint {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.shop-buy__size-hint.is-selected {
  color: var(--text);
  font-weight: 500;
}

.shop-buy__fields {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 12px;
}

.shop-buy__field--qty {
  width: 88px;
}

.shop-buy .shop-buy__field {
  display: grid;
  gap: 4px;
  margin-bottom: 0;
}

.shop-buy .shop-buy__field span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.shop-buy .shop-buy__field input,
.shop-buy .shop-buy__field select {
  padding: 8px 10px;
  font-size: 14px;
  line-height: 1.3;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.shop-buy .shop-buy__field input:focus,
.shop-buy .shop-buy__field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-ring);
}

.shop-buy__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.shop-buy__add {
  min-height: 38px;
}

.shop-buy__cart {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
}

.shop-buy__cart:hover {
  color: var(--text);
}

.shop-buy__cart-count:not(:empty) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  height: 16px;
  margin-left: 4px;
  padding: 0 4px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  vertical-align: middle;
}

.shop-buy__status {
  min-height: 1.2em;
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.shop-buy__status.is-success {
  color: var(--success);
}

.shop-buy__status.is-error {
  color: var(--error);
}

.shop-cart-page__list,
.shop-checkout-page__layout {
  display: grid;
  gap: 16px;
}

.shop-cart-item {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr) auto;
  gap: 18px 22px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  align-items: center;
}

.shop-cart-item__thumb,
.shop-checkout__thumb {
  display: block;
  width: 128px;
  aspect-ratio: 4 / 3;
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  background: #f0f0f2;
  flex-shrink: 0;
}

.shop-cart-item__thumb img,
.shop-checkout__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-cart-item__thumb--png,
.shop-checkout__thumb--png {
  background:
    linear-gradient(45deg, #ececee 25%, transparent 25%) 0 0 / 12px 12px,
    linear-gradient(-45deg, #ececee 25%, transparent 25%) 0 0 / 12px 12px,
    linear-gradient(45deg, transparent 75%, #ececee 75%) 0 0 / 12px 12px,
    linear-gradient(-45deg, transparent 75%, #ececee 75%) 0 0 / 12px 12px,
    #f7f7f8;
}

.shop-cart-item__thumb--png img,
.shop-checkout__thumb--png img {
  object-fit: contain;
  padding: 6px;
}

.shop-cart-item__thumb--empty,
.shop-checkout__thumb--empty {
  background: #f0f0f2;
}

.shop-cart-item__main {
  min-width: 0;
}

.shop-cart-item__title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
}

.shop-cart-item__title a {
  color: inherit;
  text-decoration: none;
}

.shop-cart-item__title a:hover {
  color: var(--accent);
}

.shop-cart-item__size {
  display: block;
  margin: 0 0 4px;
  font-size: 14px;
  color: var(--muted);
}

.shop-cart-item__price {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.shop-cart-item__controls {
  display: grid;
  gap: 10px;
  justify-items: end;
  align-content: start;
}

.shop-cart-item__qty {
  display: grid;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--muted);
}

.shop-cart-item__qty input {
  width: 80px;
  padding: 8px 10px;
  font: inherit;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.shop-cart-item__qty input:focus {
  outline: none;
  border-color: var(--accent);
}

.shop-cart-item__total {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  white-space: nowrap;
}

.shop-cart-item__remove {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.shop-cart-item__remove:hover {
  color: var(--error);
  border-color: rgba(180, 35, 24, 0.35);
  background: #fff5f5;
}

.shop-cart-page__summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  margin-top: 8px;
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-muted);
  box-shadow: var(--shadow-sm);
}

.shop-cart-summary__row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 1rem;
  color: var(--muted);
}

.shop-cart-summary__row strong {
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: var(--text);
}

.shop-cart-summary__checkout {
  width: 100%;
  margin-top: var(--space-3);
}

.shop-cart-page__empty,
.shop-checkout-page__empty {
  display: grid;
  gap: var(--space-4);
  color: var(--muted);
}

.shop-cart-page__empty p {
  margin: 0;
  font-size: 16px;
}

.shop-checkout-page__layout {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  align-items: start;
}

.shop-checkout__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0 0;
  margin-top: 4px;
  border-top: 1px solid var(--border);
  font-size: 1rem;
}

.shop-checkout__total strong {
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
}

.shop-checkout__summary-title {
  margin: 0 0 14px;
  font-size: 1.1rem;
}

.shop-checkout__list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.shop-checkout__line {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) auto;
  gap: 14px 16px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.shop-checkout__thumb {
  width: 80px;
}

.shop-checkout__line-main {
  min-width: 0;
}

.shop-checkout__line-total {
  font-weight: 600;
  white-space: nowrap;
}

.shop-checkout__line strong {
  display: block;
}

.shop-checkout__size,
.shop-checkout__meta {
  display: block;
  font-size: 13px;
  color: var(--muted);
}

.shop-checkout-page__summary {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.shop-checkout-page__success {
  padding: 12px 0 24px;
}

.shop-checkout-page[data-checkout-complete] [data-checkout-form],
.shop-checkout-page[data-checkout-complete] [data-checkout-empty] {
  display: none !important;
}

.shop-checkout-page[data-checkout-complete] [data-checkout-success] {
  display: block;
}

.shop-checkout-success {
  max-width: 420px;
  padding: var(--space-7) var(--space-6);
  text-align: center;
}

.shop-checkout-success.surface {
  margin-inline: auto;
}

.shop-checkout-success__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  border-radius: 999px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: var(--success);
  background: #e8f7ef;
}

.shop-checkout-success__title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.shop-checkout-success__text {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}

.shop-checkout-success__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
}

.shop-checkout-success__phone {
  min-height: 38px;
}

.shop-checkout-page__form .site-form {
  margin: 0;
  padding: 0;
  border: 0;
}

.site-form--compact .site-form__title {
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.site-form--compact .site-form__lead {
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.45;
}

.site-form--compact .site-form__body {
  max-width: none;
}

.site-form--compact .site-form__grid {
  gap: 10px;
}

.site-form--compact .site-form__field {
  gap: 4px;
  margin-bottom: 10px;
}

.site-form--compact .site-form__field span,
.site-form--compact .site-form__fieldset legend {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-form--compact .site-form__field input,
.site-form--compact .site-form__field select,
.site-form--compact .site-form__field textarea {
  padding: 8px 10px;
  font-size: 14px;
  line-height: 1.35;
  border-radius: calc(var(--radius) - 2px);
}

.site-form--compact .site-form__field input:focus,
.site-form--compact .site-form__field select:focus,
.site-form--compact .site-form__field textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(237, 90, 10, 0.12);
}

.site-form--compact .site-form__fieldset {
  margin-bottom: 10px;
}

.site-form--compact .site-form__fieldset legend {
  margin-bottom: 6px;
  text-transform: uppercase;
}

.site-form--compact .site-form__radios {
  gap: 6px;
}

.site-form--compact .site-form__radio {
  gap: 8px;
  font-size: 13px;
  line-height: 1.35;
}

.site-form--compact .site-form__radio input {
  margin-top: 2px;
}

.site-form--compact .site-form__hint {
  margin-bottom: 8px;
  font-size: 12px;
}

.site-form--compact .site-form__suggest-item {
  padding: 8px 10px;
  font-size: 14px;
}

.site-form--compact .site-form__actions {
  gap: 10px 14px;
  margin-top: 4px;
}

.site-form--compact .site-form__submit {
  min-height: 38px;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: calc(var(--radius) - 2px);
}

.site-form--compact .site-form__alt {
  font-size: 13px;
}

.site-form--compact .site-form__status {
  margin-top: 8px;
  font-size: 13px;
}

@media (max-width: 560px) {
  .shop-buy__field--qty {
    width: 100%;
  }

  .site-form--compact .site-form__grid {
    grid-template-columns: 1fr;
  }
}

.shop-card__cta--buy {
  color: var(--accent);
  border: 1px solid var(--accent-ring);
  background: var(--accent-soft);
}

.shop-card__cta--buy:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

@media (max-width: 768px) {
  .shop-cart-item {
    grid-template-columns: 104px minmax(0, 1fr);
    align-items: start;
  }

  .shop-cart-item__thumb {
    width: 104px;
  }

  .shop-cart-item__controls {
    grid-column: 1 / -1;
    justify-items: start;
  }

  .shop-checkout__line {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .shop-checkout__thumb {
    width: 72px;
  }

  .shop-checkout__line-total {
    grid-column: 2;
  }

  .shop-checkout-page__layout {
    grid-template-columns: 1fr;
  }
}

.shop-slider {
  display: block;
}

.shop-slider__stage {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.shop-slider__viewport {
  position: relative;
  overflow: hidden;
  outline: none;
  container-type: inline-size;
}

.shop-slider__viewport--expandable {
  cursor: zoom-in;
}

.shop-product-page__layout.is-gallery-expanded {
  grid-template-columns: 1fr;
}

.shop-slider.is-expanded .shop-slider__viewport--expandable {
  cursor: default;
}

.shop-slider.is-expanded .shop-slider__stage {
  box-shadow: 0 0 0 2px var(--accent);
}

.shop-slider.is-expanded .shop-slider__viewport {
  width: 100%;
}

.shop-slider.is-expanded .shop-slider__slide {
  aspect-ratio: auto;
  height: 100%;
}

.shop-slider.is-expanded .shop-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shop-slider.is-expanded .shop-slider__nav {
  top: 37.5cqi;
}

.shop-slider__track {
  display: flex;
  transition: transform 0.28s ease;
  will-change: transform;
}

.shop-slider__slide {
  flex: 0 0 100%;
  margin: 0;
  aspect-ratio: 4 / 3;
  background: #f0f0f2;
}

.shop-slider__slide--png {
  background-color: var(--mat-blue);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.42) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.42) 1px, transparent 1px);
  background-size: 20px 20px, 20px 20px;
}

.shop-slider__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-slider__slide--png img {
  object-fit: contain;
}

.shop-slider__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  border: 0;
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 12px rgba(26, 25, 28, 0.12);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.15s ease, background 0.15s ease;
}

.shop-slider__viewport:hover .shop-slider__nav,
.shop-slider__nav:focus-visible {
  opacity: 1;
}

.shop-slider__nav:hover {
  background: #fff;
}

.shop-slider__nav--prev {
  left: 12px;
}

.shop-slider__nav--next {
  right: 12px;
}

.shop-slider__toolbar {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
}

.shop-slider__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--muted);
  box-shadow: 0 1px 4px rgba(26, 25, 28, 0.1);
  cursor: pointer;
}

.shop-slider__close:hover {
  color: var(--text);
  background: #fff;
}

.shop-slider__close[hidden] {
  display: none;
}

.shop-slider__counter {
  display: inline-block;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: rgba(26, 25, 28, 0.68);
  border-radius: 999px;
}

.shop-slider__dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.shop-slider__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--border);
  cursor: pointer;
}

.shop-slider__dot.is-active {
  width: 22px;
  background: var(--accent);
}

.shop-card__media-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

@media (max-width: 900px) {
  .shop-product-page__layout {
    grid-template-columns: 1fr;
  }

  .shop-slider__nav {
    opacity: 1;
  }
}

/* FAQ */
.faq-accordion {
  display: grid;
  gap: var(--space-3);
  max-width: 720px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
  border-color: var(--accent-ring);
  box-shadow: var(--shadow-card);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: var(--radius-pill);
  transition: transform 0.3s var(--ease-out), background 0.2s ease;
}

.faq-item[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-item summary:hover {
  color: var(--accent);
}

.faq-item__body {
  padding: 0 var(--space-6) var(--space-5);
}

.faq-item__body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.contacts-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: var(--space-7);
  align-items: start;
}

.contacts-page__list {
  display: grid;
  gap: 24px;
}

.contacts-page__item dt {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.contacts-page__item dd {
  font-size: 15px;
  line-height: 1.55;
}

.contacts-page__item dd a {
  color: var(--text);
  transition: color 0.15s ease;
}

.contacts-page__item dd a:hover {
  color: var(--accent);
}

.contacts-page__messengers {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.contacts-page__map {
  min-height: 320px;
  overflow: hidden;
}

.contacts-page__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

.contacts-page__legal {
  padding: var(--space-7);
}

.contacts-page__legal h2 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.contacts-page__legal p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.contacts-page__legal p + p {
  margin-top: 10px;
}

.contacts-page__legal a {
  color: var(--text);
  transition: color 0.15s ease;
}

.contacts-page__legal a:hover {
  color: var(--accent);
}

/* Site forms */
.site-form {
  margin-top: var(--space-9);
  padding-top: var(--space-8);
  border-top: 1px solid var(--border);
}

.contacts-page .site-form--contact {
  margin-top: 0;
  padding: var(--space-7);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  border-top: 1px solid var(--border);
}

.site-form__title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.site-form__lead {
  margin: 0 0 24px;
  max-width: 56ch;
  color: var(--muted);
  line-height: 1.55;
}

.site-form__body {
  max-width: 640px;
}

.site-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.site-form__field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.site-form__field span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.site-form__field input,
.site-form__field select,
.site-form__field textarea {
  width: 100%;
  padding: 11px 12px;
  font: inherit;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.site-form__field input:focus,
.site-form__field select:focus,
.site-form__field textarea:focus {
  outline: 2px solid var(--accent-ring);
  border-color: var(--accent);
}

.site-form__field--narrow {
  max-width: 160px;
}

.site-form__field--search {
  position: relative;
}

.site-form__fieldset {
  margin: 0 0 16px;
  padding: 0;
  border: 0;
}

.site-form__fieldset legend {
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
}

.site-form__radios {
  display: grid;
  gap: 10px;
}

.site-form__radio {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.45;
  cursor: pointer;
}

.site-form__radio input {
  margin-top: 3px;
  accent-color: var(--accent);
}

.site-form__np {
  margin-bottom: 4px;
}

.site-form__hint {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.site-form__hint--warn {
  color: var(--warn);
}

.site-form__suggest {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 5;
  max-height: 240px;
  overflow: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(26, 25, 28, 0.08);
}

.site-form__suggest-item {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.site-form__suggest-item:hover,
.site-form__suggest-item:focus-visible {
  background: var(--accent-soft);
}

.site-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  margin-top: 8px;
}

.site-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 0;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.site-form__submit:hover {
  background: var(--accent-hover);
}

.site-form__submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

.site-form__alt {
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
}

.site-form__alt:hover {
  color: var(--text);
}

.site-form__status {
  min-height: 1.4em;
  margin: 14px 0 0;
  font-size: 14px;
  color: var(--muted);
}

.site-form__status.is-success {
  color: var(--success);
}

.site-form__status.is-error {
  color: var(--error);
}

.site-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.shop-product-page .site-form {
  margin-top: 56px;
}

/* Form modal */
body.form-modal-open {
  overflow: hidden;
}

.form-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.form-modal[hidden] {
  display: none;
}

.form-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 25, 28, 0.52);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.form-modal__panel {
  position: relative;
  width: min(100%, 680px);
  max-height: min(92vh, 900px);
  overflow: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.form-modal.is-open .form-modal__backdrop {
  opacity: 1;
}

.form-modal.is-open .form-modal__panel {
  opacity: 1;
  transform: none;
}

.form-modal__close {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 12px 12px -36px auto;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  color: var(--muted);
  box-shadow: 0 1px 4px rgba(26, 25, 28, 0.08);
  cursor: pointer;
}

.form-modal__close:hover {
  color: var(--text);
}

.form-modal__content {
  padding: 28px 24px 24px;
}

.form-modal .site-form {
  margin: 0;
  padding: 0;
  border: 0;
}

.form-modal .site-form__body {
  max-width: none;
}

@media (max-width: 640px) {
  .form-modal {
    padding: 0;
    align-items: stretch;
  }

  .form-modal__panel {
    width: 100%;
    max-height: none;
    min-height: 100%;
    border-radius: 0;
    border: 0;
  }

  .form-modal__content {
    padding: 24px 16px 20px;
  }
}

@media (max-width: 640px) {
  .site-form__grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.site-footer {
  margin-top: var(--space-10);
  padding: var(--space-10) 0 var(--space-8);
  border-top: 1px solid var(--border);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

.site-footer__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2);
}

.site-footer__tagline,
.site-footer__city {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.site-footer__tagline {
  margin-bottom: var(--space-2);
}

.site-footer__city {
  color: var(--accent);
  font-weight: 600;
}

.site-footer__label {
  margin-bottom: var(--space-4);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-footer__links {
  list-style: none;
  display: grid;
  gap: var(--space-3);
}

.site-footer__links a {
  font-size: 14px;
  color: var(--text);
  transition: color 0.15s ease;
}

.site-footer__links a:hover {
  color: var(--accent);
}

.site-footer__col.contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
}

.site-footer__col.contacts a {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  transition: color 0.15s ease;
}

.site-footer__col.contacts a[href^="tel"] {
  font-weight: 700;
}

.site-footer__col.contacts a:hover {
  color: var(--accent);
}

.site-footer__copy {
  font-size: 13px;
  color: var(--muted);
}

.bottom {
  /* legacy alias */
}

/* Responsive */
@media (max-width: 900px) {
  .services__grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .contacts-page__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contacts-page__legal {
    padding: 24px 20px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero__visual {
    justify-self: stretch;
    max-width: none;
  }

  .hero-orbit {
    --orbit-box: min(380px, 88vw);
  }
}

@media (max-width: 768px) {
  .nav {
    position: relative;
    flex-wrap: wrap;
  }

  .nav-burger {
    display: flex;
  }

  .nav__end {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 30;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-1);
    padding: var(--space-3);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
  }

  .nav.is-open .nav__end {
    display: flex;
  }

  .nav-link,
  .nav-gallery {
    padding: 12px 14px;
    font-size: 15px;
    border-radius: var(--radius-sm);
  }

  .nav-cta,
  .nav-phone {
    margin-left: 0;
    margin-top: var(--space-2);
    text-align: center;
    justify-content: center;
  }

  .nav__end .contact-icons {
    justify-content: flex-start;
    padding: var(--space-2) 0;
  }

  body.nav-open {
    overflow: hidden;
  }

  .hero__visual {
    display: none;
  }
}

@media (max-width: 600px) {
  :root {
    --page-pad-y: 32px;
    --page-pad-bottom: 56px;
    --page-shell-gap: 22px;
    --section-y: 48px;
    --section-y-lg: 56px;
  }

  .wrap {
    padding: 0 16px;
  }

  .nav {
    padding-block: var(--space-3);
    padding-inline: clamp(16px, 4vw, 32px);
  }

  .brand-logo {
    font-size: 24px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }
}
