:root {
  color-scheme: light;
  --ink: #101114;
  --ink-soft: #3d3d3d;
  --muted: #777777;
  --paper: #ffffff;
  --paper-strong: #f7f7f7;
  --line: rgba(16, 17, 20, 0.12);
  --line-strong: rgba(16, 17, 20, 0.28);
  --accent: #101114;
  --accent-strong: #000000;
  --accent-soft: #f0f0f0;
  --header-hover: #101114;
  --header-panel-bg: #ffffff;
  --diamond: #eeeeee;
  --night: #0f1217;
  --white: #ffffff;
  --radius: 6px;
  --header: 76px;
  --admin-rail: 260px;
  --font-sans: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extra: 800;
  font-family: var(--font-sans);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  font-weight: var(--weight-regular);
  letter-spacing: 0;
  overflow-x: clip;
  scrollbar-width: none;
  -ms-overflow-style: none;
  text-rendering: geometricPrecision;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

body.menu-open,
body.search-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.boot-screen {
  min-height: 100svh;
  display: grid;
  place-items: center;
}

.boot-mark {
  width: 28px;
  height: 28px;
  border: 1px solid var(--ink);
  border-left-color: transparent;
  border-radius: var(--radius);
  animation: spin 0.85s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.site-header {
  height: var(--header);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(18px, 3vw, 48px);
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition: background 180ms ease, color 180ms ease, border-color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

body.header-floating .site-header {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  color: var(--ink);
}

body.header-floating.header-on-dark .site-header {
  color: var(--white);
}

body.header-floating.header-on-light .site-header {
  color: var(--ink);
}

body.header-floating .site-header:has(.header-item:hover),
body.header-floating .site-header:has(.header-item:focus-within) {
  color: var(--ink);
}

body.menu-open .site-header,
body.search-open .site-header,
body.header-floating.menu-open .site-header,
body.header-floating.search-open .site-header {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  color: inherit;
}

.site-header:has(.header-item:hover),
.site-header:has(.header-item:focus-within),
body.header-floating .site-header:has(.header-item:hover),
body.header-floating .site-header:has(.header-item:focus-within) {
  background: var(--header-panel-bg);
  border-bottom-color: var(--line);
  box-shadow: none;
  backdrop-filter: blur(18px);
  color: var(--ink);
}

.brand-lockup {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  min-width: 0;
  width: clamp(138px, 15vw, 194px);
  height: 48px;
  max-width: 20vw;
  text-transform: none;
  font-size: clamp(17px, 1.25rem, 22px);
  font-weight: var(--weight-bold);
  line-height: 1;
  letter-spacing: 0;
}

.brand-lockup span {
  min-width: 0;
}

.brand-logo {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.brand-logo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 180ms ease, transform 220ms ease, filter 220ms ease;
}

.brand-logo-img-light {
  opacity: 0;
  filter: brightness(0) invert(1);
}

.brand-lockup:hover .brand-logo-img,
.footer-logo:hover .brand-logo-img {
  transform: scale(1.035);
}

body.header-floating.header-on-dark .brand-lockup .brand-logo-img-dark {
  opacity: 0;
}

body.header-floating.header-on-dark .brand-lockup .brand-logo-img-light {
  opacity: 1;
}

body.menu-open.header-floating.header-on-dark .site-header,
body.search-open.header-floating.header-on-dark .site-header {
  color: var(--white);
}

body.header-floating.header-on-dark .site-header:has(.header-item:hover),
body.header-floating.header-on-dark .site-header:has(.header-item:focus-within) {
  color: var(--ink);
}

body.menu-open.header-floating.header-on-dark .brand-lockup .brand-logo-img-dark,
body.search-open.header-floating.header-on-dark .brand-lockup .brand-logo-img-dark {
  opacity: 0;
}

body.header-floating.header-on-dark .site-header:has(.header-item:hover) .brand-lockup .brand-logo-img-dark,
body.header-floating.header-on-dark .site-header:has(.header-item:focus-within) .brand-lockup .brand-logo-img-dark {
  opacity: 1;
}

body.menu-open.header-floating.header-on-dark .brand-lockup .brand-logo-img-light,
body.search-open.header-floating.header-on-dark .brand-lockup .brand-logo-img-light {
  opacity: 1;
}

body.header-floating.header-on-dark .site-header:has(.header-item:hover) .brand-lockup .brand-logo-img-light,
body.header-floating.header-on-dark .site-header:has(.header-item:focus-within) .brand-lockup .brand-logo-img-light {
  opacity: 0;
}

body.menu-open .brand-lockup .brand-logo-img-dark,
body.search-open .brand-lockup .brand-logo-img-dark,
.site-header:has(.header-item:hover) .brand-lockup .brand-logo-img-dark,
.site-header:has(.header-item:focus-within) .brand-lockup .brand-logo-img-dark {
  opacity: 1;
}

body.menu-open .brand-lockup .brand-logo-img-light,
body.search-open .brand-lockup .brand-logo-img-light,
.site-header:has(.header-item:hover) .brand-lockup .brand-logo-img-light,
.site-header:has(.header-item:focus-within) .brand-lockup .brand-logo-img-light {
  opacity: 0;
}

body.menu-open.header-floating.header-on-dark .brand-lockup .brand-logo-img-dark,
body.search-open.header-floating.header-on-dark .brand-lockup .brand-logo-img-dark {
  opacity: 0;
}

body.menu-open.header-floating.header-on-dark .brand-lockup .brand-logo-img-light,
body.search-open.header-floating.header-on-dark .brand-lockup .brand-logo-img-light {
  opacity: 1;
}

body.header-floating.header-on-dark .brand-lockup .brand-logo-img-dark {
  opacity: 0;
}

body.header-floating.header-on-dark .brand-lockup .brand-logo-img-light {
  opacity: 1;
}

body.header-floating .brand-lockup,
body.header-floating .nav-list,
body.header-floating .header-tools,
body.header-floating .menu-button,
body.header-floating .site-header .nav-link,
body.header-floating .site-header .tool-link,
body.header-floating .site-header > .icon-button,
body.header-floating .site-header .header-tools > .icon-button {
  color: inherit;
}

body.header-floating .site-header .icon-button {
  background: transparent;
  border-color: currentColor;
  color: inherit;
  opacity: 0.82;
}

body.header-floating .header-link-icon {
  color: currentColor;
  opacity: 1;
}

.nav-list,
.header-tools,
.footer-links,
.inline-list {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 24px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list {
  justify-self: start;
}

.header-tools {
  justify-self: end;
}

.header-item {
  height: var(--header);
  display: flex;
  align-items: center;
}

.nav-link,
.tool-link,
.text-button {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.2;
}

.nav-link,
.tool-link {
  position: relative;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 2px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.01em;
  box-shadow: none;
  transition: color 180ms ease, opacity 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-link::after,
.tool-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 1px;
  background: currentColor;
  opacity: 0.75;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 200ms ease, opacity 200ms ease;
}

.header-link-icon {
  flex: 0 0 auto;
  width: 15px;
  color: currentColor;
  font-size: 13px;
  text-align: center;
  opacity: 0.7;
}

.site-header .nav-list .header-link-icon,
.site-header .header-tools .header-item:not(.header-item-contact) .header-link-icon {
  display: none;
}

.nav-link[aria-current="page"],
.tool-link[aria-current="page"],
.nav-link:hover,
.header-item:hover > .nav-link,
.header-item:focus-within > .nav-link,
.tool-link:hover,
.header-item:hover > .tool-link,
.header-item:focus-within > .tool-link,
.text-button:hover {
  color: var(--header-hover);
}

body.header-floating.header-on-dark .site-header .nav-link:hover,
body.header-floating.header-on-dark .header-item:hover > .nav-link,
body.header-floating.header-on-dark .header-item:focus-within > .nav-link,
body.header-floating.header-on-dark .site-header .tool-link:hover,
body.header-floating.header-on-dark .header-item:hover > .tool-link,
body.header-floating.header-on-dark .header-item:focus-within > .tool-link {
  color: var(--header-hover);
}

.nav-link[aria-current="page"],
.tool-link[aria-current="page"] {
  box-shadow: none;
}

.nav-link[aria-current="page"]::after,
.tool-link[aria-current="page"]::after,
.nav-link:hover::after,
.tool-link:hover::after,
.header-item:hover > .nav-link::after,
.header-item:focus-within > .nav-link::after,
.header-item:hover > .tool-link::after,
.header-item:focus-within > .tool-link::after {
  transform: scaleX(1);
}

body.header-floating .site-header .nav-link[aria-current="page"],
body.header-floating .site-header .tool-link[aria-current="page"] {
  box-shadow: none;
}

body.header-floating .site-header .nav-link:hover,
body.header-floating .site-header .tool-link:hover,
body.header-floating .site-header .icon-button:hover,
body.header-floating .site-header .icon-button:focus-visible,
body.header-floating .header-item:hover > .nav-link,
body.header-floating .header-item:focus-within > .nav-link,
body.header-floating .header-item:hover > .tool-link,
body.header-floating .header-item:focus-within > .tool-link {
  color: var(--header-hover);
  opacity: 1;
}

body.header-floating.header-on-dark .site-header .icon-button:hover,
body.header-floating.header-on-dark .site-header .icon-button:focus-visible {
  color: var(--white);
}

body.header-floating.header-on-dark .site-header:has(.header-item:hover) .icon-button:hover,
body.header-floating.header-on-dark .site-header:has(.header-item:focus-within) .icon-button:focus-visible {
  color: var(--ink);
}

.header-item-contact .tool-link {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
}

.header-item-contact .tool-link::after {
  display: none;
}

.header-item-contact .tool-link:hover,
.header-item-contact:focus-within .tool-link {
  transform: translateY(-1px);
}

.header-dropdown {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--header);
  z-index: 28;
  display: none;
  max-height: min(430px, calc(100svh - var(--header) - 24px));
  overflow: auto;
  background: var(--header-panel-bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  box-shadow: 0 24px 60px rgba(16, 17, 20, 0.12);
  backdrop-filter: blur(18px);
}

.header-item:hover .header-dropdown,
.header-item:focus-within .header-dropdown {
  display: block;
  animation: softDropIn 420ms cubic-bezier(0.2, 0.85, 0.25, 1) both;
}

.dropdown-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) minmax(220px, 0.65fr) minmax(220px, 0.65fr);
  gap: clamp(26px, 5vw, 76px);
  width: 100%;
  padding: clamp(24px, 4vw, 46px) clamp(18px, 3vw, 48px) clamp(26px, 4vw, 52px);
  animation: softPanelIn 520ms cubic-bezier(0.18, 0.82, 0.22, 1) 70ms both;
}

.dropdown-column {
  min-width: 0;
}

.dropdown-column.is-wide {
  grid-column: span 1;
}

.dropdown-kicker {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dropdown-big-list,
.dropdown-link-list {
  display: grid;
  gap: clamp(14px, 1.6vw, 24px);
}

.dropdown-big-list a {
  width: fit-content;
  max-width: 100%;
  padding: 0 0 clamp(8px, 1vw, 14px);
  border-bottom: 1px solid rgba(21, 21, 21, 0.08);
  color: var(--ink);
  font-size: clamp(28px, 3.7vw, 56px);
  font-weight: var(--weight-medium);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.dropdown-big-list a:last-child {
  border-bottom: 0;
}

.dropdown-link-list a,
.dropdown-card strong {
  color: var(--ink);
  font-size: clamp(19px, 1.8vw, 28px);
  font-weight: var(--weight-medium);
  line-height: 1.18;
  transition: color 180ms ease;
}

.dropdown-link-list a {
  padding: 6px 0 10px;
  border-bottom: 1px solid rgba(21, 21, 21, 0.08);
}

.dropdown-link-list a:last-child {
  border-bottom: 0;
}

.dropdown-big-list a:hover,
.dropdown-link-list a:hover,
.dropdown-card:hover strong {
  color: var(--header-hover);
}

.dropdown-card {
  display: grid;
  gap: 7px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.dropdown-card span {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid transparent;
  background: transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 15px;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, opacity 180ms ease;
}

.icon-button:hover,
.icon-button:focus-visible {
  border-color: currentColor;
  opacity: 1;
  transform: translateY(-1px);
  outline: 0;
}

.menu-button {
  display: none;
}

.icon-lines,
.icon-search,
.icon-close,
.icon-plus,
.icon-save,
.icon-trash,
.icon-edit,
.icon-export,
.icon-import {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
}

.icon-lines::before,
.icon-lines::after {
  content: "";
  position: absolute;
  left: 1px;
  width: 16px;
  height: 1px;
  background: currentColor;
}

.icon-lines::before {
  top: 6px;
}

.icon-lines::after {
  top: 12px;
}

.icon-search::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 1px;
  width: 11px;
  height: 11px;
  border: 1.5px solid currentColor;
  border-radius: 3px;
}

.icon-search::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: 2px;
  width: 7px;
  height: 1.5px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: center;
}

.icon-close::before,
.icon-close::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 14px;
  height: 1px;
  background: currentColor;
}

.icon-close::before {
  transform: rotate(45deg);
}

.icon-close::after {
  transform: rotate(-45deg);
}

.icon-plus::before,
.icon-plus::after,
.icon-save::before,
.icon-trash::before,
.icon-edit::before,
.icon-export::before,
.icon-import::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1.5px solid currentColor;
}

.icon-plus::after {
  inset: auto;
  left: 8px;
  top: 3px;
  width: 1.5px;
  height: 12px;
  border: 0;
  background: currentColor;
  box-shadow: -5px 5px 0 -4.2px currentColor, 5px 5px 0 -4.2px currentColor;
}

.icon-save::before {
  border-radius: 2px;
}

.icon-save::after {
  content: "";
  position: absolute;
  left: 6px;
  bottom: 5px;
  width: 6px;
  height: 4px;
  border: 1px solid currentColor;
}

.icon-trash::before {
  inset: 6px 4px 3px;
  border-top: 0;
}

.icon-trash::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 3px;
  width: 8px;
  height: 1.5px;
  background: currentColor;
}

.icon-edit::before {
  inset: auto;
  left: 3px;
  top: 9px;
  width: 12px;
  height: 2px;
  border: 0;
  background: currentColor;
  transform: rotate(-35deg);
}

.icon-edit::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 4px;
  width: 4px;
  height: 4px;
  border: 1px solid currentColor;
  transform: rotate(-35deg);
}

.icon-export::before,
.icon-import::before {
  inset: 7px 4px 3px;
  border-top: 0;
}

.icon-export::after,
.icon-import::after {
  content: "";
  position: absolute;
  left: 8px;
  width: 1.5px;
  height: 11px;
  background: currentColor;
}

.icon-export::after {
  top: 2px;
  box-shadow: -3px 2px 0 -2px currentColor, 3px 2px 0 -2px currentColor;
}

.icon-import::after {
  top: 1px;
  transform: rotate(180deg);
}

.mega-panel,
.search-panel {
  position: fixed;
  inset: var(--header) 0 0;
  z-index: 25;
  display: none;
  background: var(--paper-strong);
  border-top: 1px solid var(--line);
}

body.menu-open .mega-panel,
body.search-open .search-panel {
  display: block;
  animation: softPanelIn 480ms cubic-bezier(0.2, 0.85, 0.25, 1) both;
}

.mega-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) repeat(3, 1fr);
  gap: clamp(24px, 5vw, 80px);
  height: 100%;
  padding: clamp(28px, 5vw, 72px);
  overflow: auto;
  animation: softPanelIn 620ms cubic-bezier(0.18, 0.82, 0.22, 1) 90ms both;
}

.mega-title,
.eyebrow,
.field-label,
.stat-label,
.product-meta,
.story-kicker,
.reference-label,
.fineprint {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mega-list {
  display: grid;
  gap: 13px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.mega-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.mega-title-row .mega-title {
  margin: 0;
}

.mega-title-row a {
  color: var(--accent);
  font-size: 12px;
  font-weight: var(--weight-semibold);
}

.mega-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: clamp(22px, 3vw, 46px);
  line-height: 1.02;
}

.mega-link small {
  color: var(--muted);
  font-size: 0.72em;
  font-weight: var(--weight-semibold);
}

.mega-link .header-link-icon {
  width: 22px;
  font-size: 0.64em;
}

.mega-column .mega-link {
  font-size: clamp(18px, 1.5vw, 26px);
}

.mega-link:hover {
  color: var(--accent);
}

.search-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(26px, 5vw, 70px) clamp(18px, 3vw, 48px);
  animation: softPanelIn 620ms cubic-bezier(0.18, 0.82, 0.22, 1) 90ms both;
}

.search-input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  padding: 0 0 16px;
  font-size: clamp(34px, 7vw, 92px);
  line-height: 1;
  outline: 0;
}

.search-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.page {
  min-height: 100svh;
}

.page > .page-intro,
.page > .catalog-hero,
.page > .contact-hero,
.page > .contact-layout,
.page > .contact-process,
.page > .reference-logo-section,
.page > .catalog-layout,
.page > .product-detail,
.page > .story-detail,
.page > .feature-band,
.page > .section,
.admin-shell {
  animation: softPanelIn 560ms cubic-bezier(0.18, 0.82, 0.22, 1) both;
}

.page > .hero {
  animation: none;
}

.scroll-reveal {
  opacity: 0;
  transform: translate3d(0, var(--reveal-distance, 28px), 0);
  transition:
    opacity 780ms cubic-bezier(0.18, 0.82, 0.22, 1),
    transform 780ms cubic-bezier(0.18, 0.82, 0.22, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.scroll-reveal[data-reveal-direction="up"] {
  --reveal-distance: -24px;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero {
  position: relative;
  min-height: 84svh;
  display: grid;
  align-items: end;
  padding: clamp(30px, 5vw, 76px);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(13, 13, 13, 0.78) 0%, rgba(13, 13, 13, 0.58) 35%, rgba(13, 13, 13, 0.14) 76%),
    linear-gradient(180deg, rgba(13, 13, 13, 0.08) 0%, rgba(13, 13, 13, 0.55) 100%);
}

.hero-image-layer {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: var(--night);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  animation: heroImageReveal 980ms cubic-bezier(0.18, 0.78, 0.22, 1) both;
  will-change: transform, opacity, clip-path;
}

.hero.is-backward .hero-image {
  animation-name: heroImageRevealBack;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 0 1px, transparent 1px),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.22) 100%);
  background-size: clamp(120px, 12vw, 190px) 100%, 100% 100%;
  opacity: 0.5;
}

.hero-copy {
  max-width: min(820px, 92vw);
  position: relative;
  z-index: 1;
  padding-bottom: 86px;
  color: var(--white);
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.76);
  animation: heroTextIn 680ms cubic-bezier(0.18, 0.78, 0.22, 1) 90ms both;
}

.hero-kicker span,
.hero-kicker strong {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: var(--weight-bold);
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-kicker i {
  color: var(--accent-soft);
  font-size: 14px;
}

.hero-kicker strong {
  color: var(--white);
  letter-spacing: 0.04em;
}

.hero-kicker em {
  color: rgba(255, 255, 255, 0.58);
  font-style: normal;
}

.hero h1,
.page-title,
.feature-title {
  margin: 0;
  font-weight: var(--weight-medium);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 860px;
  font-size: clamp(42px, 4.5rem, 76px);
  line-height: 1.03;
  overflow-wrap: anywhere;
  text-wrap: balance;
  animation: heroTextIn 720ms cubic-bezier(0.18, 0.78, 0.22, 1) 170ms both;
}

.hero p {
  max-width: 590px;
  margin: 16px 0 0;
  font-size: clamp(16px, 1.125rem, 18px);
  line-height: 1.48;
  overflow-wrap: anywhere;
  animation: heroTextIn 720ms cubic-bezier(0.18, 0.78, 0.22, 1) 260ms both;
}

.hero-actions,
.section-head,
.card-actions,
.form-actions,
.admin-actions,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-actions {
  margin-top: 24px;
  animation: heroTextIn 720ms cubic-bezier(0.18, 0.78, 0.22, 1) 360ms both;
}

.hero .button {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.hero .ghost-button {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.hero .button:hover,
.hero .ghost-button:hover {
  transform: translateY(-2px);
}

.hero-slider-controls {
  position: absolute;
  right: clamp(18px, 3vw, 48px);
  bottom: clamp(18px, 3vw, 44px);
  z-index: 2;
  width: min(390px, calc(100% - 36px));
  display: grid;
  gap: 12px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(18, 18, 18, 0.46);
  color: var(--white);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  animation: heroControlsIn 720ms cubic-bezier(0.18, 0.78, 0.22, 1) 430ms both;
}

.hero-progress {
  position: relative;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.hero-progress span {
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--white), var(--accent-soft));
}

.hero-progress span.is-running {
  animation: heroProgress var(--hero-delay) linear both;
}

.hero-control-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-counter {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  min-width: 52px;
  font-variant-numeric: tabular-nums;
}

.hero-counter span {
  font-size: 22px;
  font-weight: var(--weight-bold);
  line-height: 1;
}

.hero-counter small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: var(--weight-bold);
}

.hero-counter small::before {
  content: "/";
  margin-right: 2px;
}

.hero-arrow,
.hero-dot,
.hero-autoplay {
  border: 0;
  color: inherit;
  cursor: pointer;
}

.hero-arrow,
.hero-autoplay {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  transition: transform 180ms ease, background 180ms ease;
}

.hero-arrow:hover,
.hero-arrow:focus-visible,
.hero-autoplay:hover,
.hero-autoplay:focus-visible {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
  outline: 0;
}

.hero-dots {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  justify-content: center;
  min-width: 0;
  padding: 0 4px;
}

.hero-dot {
  flex: 1 1 22px;
  max-width: 42px;
  height: 3px;
  padding: 0;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.28);
  transition: flex-basis 220ms ease, background 220ms ease, opacity 220ms ease;
}

.hero-dot.is-active {
  flex-basis: 46px;
  background: var(--white);
}

@keyframes heroImageReveal {
  from {
    opacity: 0.36;
    clip-path: inset(0 9% 0 0);
    transform: scale(1.08) translateX(28px);
  }
  to {
    opacity: 1;
    clip-path: inset(0);
    transform: scale(1.02) translateX(0);
  }
}

@keyframes heroImageRevealBack {
  from {
    opacity: 0.36;
    clip-path: inset(0 0 0 9%);
    transform: scale(1.08) translateX(-28px);
  }
  to {
    opacity: 1;
    clip-path: inset(0);
    transform: scale(1.02) translateX(0);
  }
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes heroControlsIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroProgress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes softDropIn {
  from {
    opacity: 0;
    transform: translateY(-12px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes softPanelIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes softSlideInRight {
  from {
    opacity: 0;
    transform: translateX(28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes softToastIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image,
  .hero-kicker,
  .hero h1,
  .hero p,
  .hero-actions,
  .hero-slider-controls,
  .header-dropdown,
  .dropdown-inner,
  .mega-panel,
  .mega-inner,
  .search-panel,
  .search-inner,
  .drawer,
  .toast,
  .page > .page-intro,
  .page > .catalog-hero,
  .page > .contact-hero,
  .page > .contact-layout,
  .page > .contact-process,
  .page > .reference-logo-section,
  .page > .catalog-layout,
  .page > .product-detail,
  .page > .story-detail,
  .page > .feature-band,
  .page > .section,
  .admin-shell,
  .scroll-reveal,
  .wany-credit,
  .reference-logo-track,
  .reference-logo-card,
  .reference-logo-card::before,
  .reference-logo-card::after,
  .reference-logo-card img,
  .reference-logo-section::before,
  .reference-logo-head::before,
  .reference-logo-head::after,
  .reference-logo-head .section-title,
  .hero-progress span.is-running {
    animation: none !important;
    transition: none !important;
  }

  .hero-progress span.is-running {
    transform: scaleX(1);
  }

  .scroll-reveal {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}

.button,
.ghost-button,
.danger-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  line-height: 1.1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:active,
.ghost-button:active,
.danger-button:active,
.icon-button:active,
.nav-link:active,
.tool-link:active,
.text-button:active,
.mega-link:active,
.admin-tab:active,
.gallery-thumb:active,
.hero-arrow:active,
.hero-autoplay:active,
.category-banner-card:active,
.product-card:active,
.story-card:active,
.reference-card:active,
.download-card:active,
.footer-link-list a:active,
.footer-contact-link:active {
  transform: translateY(1px) scale(0.985);
}

.ghost-button {
  background: transparent;
  color: inherit;
  border-color: var(--line-strong);
}

.danger-button {
  background: #b3261e;
  border-color: #b3261e;
}

.button:hover,
.ghost-button:hover,
.danger-button:hover {
  box-shadow: 0 14px 30px rgba(16, 17, 20, 0.1);
  transform: translateY(-1px);
}

.button:hover {
  border-color: var(--accent-strong);
  background: var(--accent-strong);
  color: var(--white);
}

.ghost-button:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.hero .button:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.hero .ghost-button:hover {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.section {
  padding: clamp(46px, 7vw, 96px) clamp(18px, 3vw, 48px);
}

.section.is-flush {
  padding-inline: 0;
}

.section-head {
  justify-content: space-between;
  margin-bottom: 24px;
}

.section > .section-head {
  position: relative;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(116px, 14vw, 178px);
  overflow: hidden;
  padding: clamp(20px, 3vw, 40px) 0;
  text-align: center;
  isolation: isolate;
}

.section > .section-head::before {
  content: attr(data-echo);
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  width: max-content;
  max-width: 96vw;
  color: rgba(16, 17, 20, 0.065);
  font-size: clamp(48px, 8.8vw, 122px);
  font-weight: var(--weight-extra);
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
  transform: translate(-50%, -50%) scaleX(1.02);
  filter: blur(3.6px);
  pointer-events: none;
}

.section > .section-head > div {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 8px;
}

.section > .section-head .eyebrow {
  justify-content: center;
}

.section > .section-head .text-button {
  position: relative;
  z-index: 1;
  margin-inline: auto;
}

.section > .section-head .section-title {
  position: relative;
  z-index: 1;
}

.section > .section-head .section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 17, 20, 0.52), transparent);
  transform: translateX(-50%);
  opacity: 0.76;
}

.section-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: var(--weight-medium);
  line-height: 1;
}

.section-copy {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.35;
}

.reference-logo-section {
  position: relative;
  overflow: hidden;
  padding: clamp(18px, 2.8vw, 36px) 0 clamp(30px, 4vw, 52px);
  background: #ffffff;
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.reference-logo-section::before {
  display: none;
}

.reference-logo-head {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(132px, 17vw, 190px);
  overflow: hidden;
  padding: clamp(26px, 4vw, 42px) clamp(18px, 3vw, 48px);
  margin-bottom: clamp(12px, 1.6vw, 20px);
  background: #ffffff;
  text-align: center;
  isolation: isolate;
}

.reference-logo-head::before {
  content: attr(data-echo);
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  width: max-content;
  max-width: 98vw;
  color: rgba(16, 17, 20, 0.08);
  font-size: clamp(58px, 9.6vw, 132px);
  font-weight: var(--weight-extra);
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
  transform: translate(-50%, -50%) scaleX(1.02);
  filter: blur(4px);
  opacity: 1;
}

.reference-logo-head::after {
  display: none;
}

.reference-logo-head .eyebrow {
  display: none;
}

.reference-logo-head .section-title {
  position: relative;
  z-index: 1;
  max-width: none;
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: var(--weight-bold);
  line-height: 1.08;
  text-align: center;
  text-transform: uppercase;
  text-shadow: none;
}

.reference-logo-head .section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 17, 20, 0.62), transparent);
  transform: translateX(-50%);
  opacity: 0.84;
}

.reference-logo-head p:not(.eyebrow) {
  display: none;
}

.reference-logo-marquee {
  position: relative;
  display: grid;
  gap: clamp(8px, 1.1vw, 13px);
  padding: 0;
  background: #ffffff;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.reference-logo-row {
  display: flex;
  overflow: hidden;
}

.reference-logo-track {
  width: max-content;
  display: flex;
  gap: clamp(10px, 1.2vw, 18px);
  padding: 6px 0;
  animation: referenceMarqueeLeft 54s linear infinite;
  will-change: transform;
}

.reference-logo-row.is-right .reference-logo-track {
  animation-name: referenceMarqueeRight;
  animation-duration: 60s;
}

.reference-logo-row:hover .reference-logo-track {
  animation-play-state: paused;
}

.reference-logo-card {
  position: relative;
  flex: 0 0 clamp(112px, 9.4vw, 154px);
  height: clamp(50px, 4.5vw, 66px);
  display: grid;
  place-items: center;
  overflow: visible;
  margin: 0;
  padding: clamp(8px, 0.9vw, 12px);
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  cursor: default;
  box-shadow: none;
  transition: transform 260ms ease, opacity 260ms ease, filter 260ms ease;
}

.reference-logo-card::before,
.reference-logo-card::after {
  display: none;
}

.reference-logo-card img {
  position: relative;
  z-index: 1;
  width: 82%;
  height: 78%;
  object-fit: contain;
  filter:
    grayscale(1)
    saturate(0)
    brightness(0.74)
    contrast(1.28)
    drop-shadow(0 1px 0 rgba(16, 17, 20, 0.22))
    drop-shadow(0 12px 22px rgba(16, 17, 20, 0.08));
  opacity: 0.98;
  transition: transform 260ms ease, filter 260ms ease, opacity 260ms ease;
}

.reference-logo-card:hover {
  transform: translateY(-2px);
}

.reference-logo-card:hover img {
  filter:
    grayscale(1)
    saturate(0)
    brightness(0.68)
    contrast(1.34)
    drop-shadow(0 1px 0 rgba(16, 17, 20, 0.28))
    drop-shadow(0 14px 24px rgba(16, 17, 20, 0.13));
  opacity: 1;
  transform: scale(1.04);
}

@keyframes referenceMarqueeLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes referenceMarqueeRight {
  from {
    transform: translate3d(-50%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 860px) {
  .section > .section-head {
    min-height: 128px;
    padding: 24px 0;
  }

  .section > .section-head::before {
    font-size: clamp(42px, 13vw, 76px);
    filter: blur(3px);
  }
}

@media (max-width: 560px) {
  .section > .section-head {
    min-height: 110px;
    padding: 18px 0 22px;
  }

  .section > .section-head::before {
    font-size: clamp(36px, 15vw, 58px);
    filter: blur(2.8px);
  }

  .section > .section-head .section-title::after {
    bottom: -10px;
    width: 58px;
  }
}

.category-banner-section {
  padding-top: clamp(54px, 7vw, 104px);
  background: var(--paper);
}

.category-banner-head {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.42fr);
  gap: clamp(18px, 4vw, 60px);
  align-items: end;
  margin-bottom: clamp(22px, 3vw, 34px);
}

.category-banner-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  grid-column: 1 / -1;
  margin: 0;
}

.category-banner-head .section-title {
  font-size: clamp(38px, 6vw, 84px);
}

.category-banner-head p:not(.eyebrow) {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.45;
}

.category-banner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 24px);
}

.category-banner-card {
  position: relative;
  min-height: 210px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--night);
  color: var(--white);
}

.category-banner-card:nth-child(1),
.category-banner-card:nth-child(6) {
  grid-column: span 2;
}

.category-banner-card img,
.category-banner-shade {
  position: absolute;
  inset: 0;
}

.category-banner-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 420ms ease;
}

.category-banner-shade {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72));
}

.category-banner-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 16px;
}

.category-banner-arrow {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.category-banner-arrow {
  font-size: 20px;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.category-banner-text {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.category-banner-text strong {
  font-size: clamp(20px, 2vw, 30px);
  font-weight: var(--weight-semibold);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.category-banner-text small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.category-banner-card:hover img {
  transform: scale(1.045);
}

.category-banner-card:hover .category-banner-arrow {
  background: var(--white);
  color: var(--ink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 30px);
  align-items: start;
}

.product-card,
.story-card,
.reference-card,
.download-card {
  min-width: 0;
  transition: transform 240ms ease, opacity 240ms ease, filter 240ms ease;
}

.product-card {
  display: grid;
  color: var(--ink);
  outline: 0;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 5px;
}

.product-card:hover .product-image {
  transform: scale(1.012);
}

.story-card:hover .story-image,
.reference-card:hover .reference-image {
  transform: scale(1.025);
}

.product-media,
.story-media,
.reference-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--diamond);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(16, 17, 20, 0.08);
}

.product-media {
  aspect-ratio: 4 / 5;
  background: var(--white);
  border-color: rgba(16, 17, 20, 0.1);
  box-shadow: 0 18px 42px rgba(16, 17, 20, 0.08);
}

.product-card:hover .product-media,
.story-card:hover .story-media,
.reference-card:hover .reference-media {
  border-color: rgba(16, 17, 20, 0.26);
  box-shadow: 0 24px 58px rgba(16, 17, 20, 0.12);
}

.product-card .product-media::after {
  display: none;
}

.story-media,
.reference-media {
  aspect-ratio: 16 / 11;
}

.product-image,
.story-image,
.reference-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.product-image {
  background: var(--white);
  padding: clamp(6px, 0.9vw, 16px);
  object-fit: contain;
}

.product-card:nth-child(4n + 1) .product-image {
  object-position: 52% 65%;
}

.product-card:nth-child(4n + 2) .product-image {
  object-position: 50% 52%;
}

.product-card:nth-child(4n + 3) .product-image {
  object-position: 50% 56%;
}

.product-card:nth-child(4n + 4) .product-image {
  object-position: 28% 54%;
}

.tag-row {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag,
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 9px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-size: 11px;
  font-weight: var(--weight-semibold);
  line-height: 1;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
}

.product-card-action {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-size: 12px;
  font-weight: var(--weight-bold);
  line-height: 1;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 260ms ease, transform 260ms ease, background 260ms ease;
  backdrop-filter: blur(12px);
}

.product-card-action i {
  font-size: 11px;
  transition: transform 260ms ease;
}

.product-card:hover .product-card-action {
  opacity: 1;
  transform: translateY(0);
}

.product-card:hover .product-card-action i {
  transform: translateX(3px);
}

.status-pill {
  background: var(--accent);
  color: var(--white);
}

.status-pill.is-muted {
  background: var(--diamond);
  color: var(--ink);
}

.product-info,
.story-info,
.reference-info {
  padding-top: 12px;
}

.product-info {
  display: grid;
  gap: 7px;
  padding-top: 14px;
}

.product-category {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: var(--accent);
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-category i {
  width: 14px;
  flex: 0 0 14px;
  text-align: center;
}

.product-category span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-info h3,
.story-info h3,
.reference-info h3 {
  margin: 0;
  font-size: clamp(18px, 1.6vw, 25px);
  font-weight: var(--weight-medium);
  line-height: 1.1;
}

.product-info h3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: color 220ms ease;
}

.product-card:hover .product-info h3 {
  color: var(--accent);
}

.product-meta,
.story-card p,
.reference-card p {
  margin-top: 7px;
}

.product-meta {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-excerpt {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 34px);
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 34px);
}

.story-card p,
.reference-card p {
  color: var(--ink-soft);
  line-height: 1.45;
}

.story-info h3,
.reference-info h3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.story-excerpt,
.reference-summary {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.story-more,
.reference-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  color: var(--ink);
  font-size: 12px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.story-more i,
.reference-more i {
  font-size: 11px;
  transition: transform 180ms ease;
}

.story-card:hover .story-more i,
.reference-card:hover .reference-more i {
  transform: translateX(3px);
}

.feature-band {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 540px;
  background: var(--night);
  color: var(--white);
}

.feature-band.is-light {
  background: var(--paper-strong);
  color: var(--ink);
}

.feature-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.feature-copy {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(30px, 5vw, 78px);
}

.feature-title {
  font-size: clamp(44px, 7vw, 96px);
}

.feature-copy p {
  margin: 0;
  max-width: 560px;
  color: inherit;
  font-size: clamp(17px, 2vw, 25px);
  line-height: 1.35;
}

.page-intro {
  padding: clamp(44px, 7vw, 100px) clamp(18px, 3vw, 48px) 28px;
}

.page-title {
  max-width: 980px;
  font-size: clamp(50px, 11vw, 148px);
}

.page-intro p {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.35;
}

.contact-hero {
  position: relative;
  min-height: min(760px, 92svh);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  overflow: hidden;
  padding: calc(var(--header) + 70px) clamp(18px, 3vw, 48px) clamp(44px, 6vw, 88px);
  background: var(--night);
  color: var(--white);
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.28) 58%, rgba(0, 0, 0, 0.68)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.04) 52%);
}

.contact-hero-media {
  position: absolute;
  inset: 0;
  margin: 0;
}

.contact-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.05);
}

.contact-hero-copy,
.contact-quick-panel {
  position: relative;
  z-index: 1;
}

.contact-hero-copy {
  max-width: 980px;
  display: grid;
  gap: 20px;
}

.contact-hero-copy .eyebrow,
.contact-map-copy .eyebrow,
.contact-process-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.contact-hero-copy h1 {
  max-width: 1030px;
  margin: 0;
  font-size: clamp(54px, 8.2vw, 126px);
  font-weight: var(--weight-medium);
  line-height: 0.92;
}

.contact-hero-copy > p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 25px);
  line-height: 1.4;
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.contact-quick-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.contact-quick-panel > strong {
  margin-bottom: 4px;
  font-size: 22px;
  font-weight: var(--weight-semibold);
  line-height: 1.1;
}

.contact-line {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.contact-line:hover {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.contact-line i,
.contact-info-icon {
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius);
}

.contact-line i {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.14);
}

.contact-line span {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.contact-line small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-line strong {
  min-width: 0;
  color: var(--white);
  font-size: 13px;
  font-weight: var(--weight-semibold);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.contact-layout {
  display: grid;
  gap: clamp(22px, 3vw, 42px);
  padding: clamp(44px, 6vw, 86px) clamp(18px, 3vw, 48px);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 22px);
}

.contact-info-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 13px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: 0 16px 42px rgba(16, 17, 20, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.contact-info-card:hover {
  border-color: rgba(16, 17, 20, 0.24);
  box-shadow: 0 24px 58px rgba(16, 17, 20, 0.1);
  transform: translateY(-4px);
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  background: var(--ink);
  color: var(--white);
}

.contact-info-body {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.contact-info-body small,
.contact-info-body em {
  color: var(--accent);
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-info-body strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: var(--weight-semibold);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.contact-info-body em {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  color: var(--ink-soft);
  font-style: normal;
}

.contact-info-body em i {
  font-size: 10px;
  transition: transform 180ms ease;
}

.contact-info-card:hover em i {
  transform: translateX(3px);
}

.contact-map-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.56fr) minmax(0, 1fr);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--night);
  color: var(--white);
  min-height: 500px;
}

.contact-map-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(24px, 4vw, 56px);
}

.contact-map-copy h2 {
  margin: 0;
  font-size: clamp(32px, 4.6vw, 68px);
  font-weight: var(--weight-medium);
  line-height: 1;
}

.contact-map-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.55;
}

.contact-map-copy .text-button {
  width: fit-content;
  color: var(--white);
}

.contact-map-frame {
  min-height: 500px;
  background: var(--diamond);
}

.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
  filter: saturate(0.92) contrast(1.02);
}

.contact-process {
  padding: 0 clamp(18px, 3vw, 48px) clamp(58px, 7vw, 104px);
}

.contact-process-head {
  max-width: 980px;
  display: grid;
  gap: 14px;
  margin-bottom: clamp(20px, 3vw, 34px);
}

.contact-process-head h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 76px);
  font-weight: var(--weight-medium);
  line-height: 1;
}

.contact-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 24px);
}

.contact-step {
  min-width: 0;
  padding: clamp(18px, 2.3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: 0 16px 42px rgba(16, 17, 20, 0.05);
}

.contact-step span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--accent);
  font-size: 12px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
}

.contact-step h3 {
  margin: 0;
  font-size: clamp(21px, 2vw, 30px);
  font-weight: var(--weight-semibold);
  line-height: 1.1;
}

.contact-step p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.catalog-hero {
  position: relative;
  min-height: min(720px, 86svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--header) + 64px) clamp(18px, 3vw, 48px) clamp(52px, 7vw, 96px);
  background: var(--night);
  color: var(--white);
}

.catalog-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.28) 54%, rgba(0, 0, 0, 0.12)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.04) 58%);
}

.catalog-hero-media {
  position: absolute;
  inset: 0;
  margin: 0;
}

.catalog-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04);
}

.catalog-hero-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  max-width: 1040px;
  display: grid;
  gap: 20px;
}

.catalog-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: rgba(255, 255, 255, 0.78);
}

.catalog-hero .page-title {
  max-width: 1060px;
  color: var(--white);
  font-size: clamp(48px, 8.4vw, 128px);
  line-height: 0.92;
  overflow-wrap: anywhere;
}

.catalog-hero-copy > p:not(.eyebrow) {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.4;
}

.catalog-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(86px, 128px));
  gap: 10px;
  max-width: 100%;
  margin-top: 8px;
}

.catalog-stats span {
  min-width: 0;
  min-height: 78px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(14px);
}

.catalog-stats strong {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: var(--weight-semibold);
  line-height: 1;
}

.catalog-stats small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.catalog-layout {
  display: grid;
  grid-template-columns: minmax(230px, 300px) 1fr;
  gap: clamp(24px, 4vw, 60px);
  padding: 22px clamp(18px, 3vw, 48px) clamp(60px, 7vw, 100px);
}

.filter-panel {
  position: sticky;
  top: calc(var(--header) + 20px);
  align-self: start;
  display: grid;
  gap: 18px;
}

.catalog-filter-panel {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(16, 17, 20, 0.08);
  backdrop-filter: blur(16px);
}

.catalog-search-box {
  position: relative;
}

.catalog-search-box i {
  position: absolute;
  top: 50%;
  left: 13px;
  z-index: 1;
  color: var(--muted);
  font-size: 14px;
  transform: translateY(-50%);
  pointer-events: none;
}

.catalog-search-box .input {
  min-height: 46px;
  padding-left: 40px;
  background: var(--white);
}

.filter-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.filter-summary span {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.filter-summary .text-button {
  flex: 0 0 auto;
  font-size: 12px;
}

.filter-row {
  display: grid;
  gap: 18px;
}

.filter-group {
  display: grid;
  gap: 10px;
  border-top: 0;
  padding-top: 0;
}

.filter-group .field-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-chip-list {
  display: grid;
  gap: 7px;
}

.check-row {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 0;
  cursor: pointer;
}

.check-row input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.check-row span {
  min-width: 0;
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: var(--weight-semibold);
  line-height: 1.2;
  overflow-wrap: anywhere;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.check-row:hover span {
  border-color: var(--line-strong);
  background: var(--white);
  color: var(--ink);
}

.check-row input:focus-visible + span {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.check-row input:checked + span {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.catalog-results {
  min-width: 0;
}

.catalog-results-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(18px, 2.4vw, 34px);
}

.catalog-results-head h2 {
  margin: 5px 0 0;
  font-size: clamp(32px, 5vw, 76px);
  font-weight: var(--weight-medium);
  line-height: 0.98;
}

.catalog-results-head .text-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.catalog-product-grid .empty-state {
  grid-column: 1 / -1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
}

.input,
.select,
.textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  padding: 12px 13px;
  outline: 0;
}

.textarea {
  min-height: 118px;
  resize: vertical;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: var(--ink);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 76px);
  padding: clamp(26px, 5vw, 70px) clamp(18px, 3vw, 48px) clamp(60px, 7vw, 100px);
}

.detail-media {
  position: sticky;
  top: calc(var(--header) + 24px);
  align-self: start;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--diamond);
}

.detail-main-image {
  position: relative;
}

.detail-main-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.image-download {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  font-weight: var(--weight-semibold);
  backdrop-filter: blur(14px);
}

.detail-gallery {
  display: flex;
  gap: 8px;
  padding: 8px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  background: var(--paper-strong);
  border-top: 1px solid var(--line);
}

.gallery-thumb {
  flex: 0 0 78px;
  width: 78px;
  height: 78px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  cursor: pointer;
}

.gallery-thumb.is-active {
  border-color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--ink);
}

.detail-gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.detail-copy h1 {
  margin: 8px 0 14px;
  font-size: clamp(34px, 5.8vw, 72px);
  font-weight: var(--weight-medium);
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.detail-section {
  margin: 28px 0 0;
}

.detail-section h2 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: var(--weight-bold);
}

.description-prose {
  display: grid;
  gap: 12px;
}

.description-prose p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.72;
}

.story-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
  padding: clamp(28px, 5vw, 72px) clamp(18px, 3vw, 48px) clamp(60px, 7vw, 104px);
}

.story-detail-media {
  position: sticky;
  top: calc(var(--header) + 24px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--diamond);
}

.story-detail-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.story-detail-copy {
  max-width: 760px;
}

.story-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.story-detail-copy h1 {
  margin: 8px 0 10px;
  font-size: clamp(36px, 5.4vw, 68px);
  font-weight: var(--weight-medium);
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.story-detail-meta {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.story-prose {
  margin-top: 28px;
}

.feature-table {
  display: grid;
  border-top: 1px solid var(--line);
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.45fr) minmax(0, 1fr);
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.detail-label,
.feature-label {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: var(--weight-bold);
}

.detail-icon {
  flex: 0 0 18px;
  width: 18px;
  color: var(--accent);
  font-size: 14px;
  text-align: center;
  opacity: 0.86;
}

.feature-label span {
  min-width: 0;
}

.feature-row strong {
  min-width: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: var(--weight-medium);
  line-height: 1.55;
}

.spec-list {
  display: grid;
  gap: 0;
  margin: 34px 0;
  border-top: 1px solid var(--line);
}

.spec-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.site-footer {
  padding: clamp(42px, 5vw, 76px) clamp(18px, 3vw, 48px) clamp(28px, 4vw, 42px);
  background: var(--ink);
  color: var(--white);
}

.site-footer a {
  color: inherit;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(250px, 1.25fr) minmax(140px, 0.62fr) minmax(220px, 0.92fr) minmax(240px, 1fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
  padding-bottom: clamp(28px, 4vw, 46px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-brand-block {
  display: grid;
  gap: 18px;
  max-width: 520px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  width: min(260px, 72vw);
  height: 84px;
  margin: 0;
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: var(--weight-bold);
  line-height: 1;
}

.footer-logo .brand-logo-img-dark {
  opacity: 0;
}

.footer-logo .brand-logo-img-light {
  opacity: 1;
}

.footer-text {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.6;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-badges span {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1;
}

.footer-col {
  min-width: 0;
}

.footer-col h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 13px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-link-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-link-list.is-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 14px;
}

.footer-link-list a,
.footer-contact-link {
  min-width: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.35;
  overflow-wrap: anywhere;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-link-list a:hover,
.footer-contact-link:hover {
  color: var(--white);
}

.footer-contact-list {
  display: grid;
  gap: 12px;
}

.footer-contact-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-link i {
  width: 16px;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding-top: clamp(24px, 3vw, 36px);
}

.footer-cta-copy {
  display: grid;
  gap: 7px;
}

.footer-cta-copy strong {
  font-size: clamp(20px, 2.5vw, 34px);
  font-weight: var(--weight-semibold);
  line-height: 1.15;
}

.footer-cta-copy span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.45;
}

.footer-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.site-footer .ghost-button {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
}

.site-footer .ghost-button:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wany-credit {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: var(--weight-regular);
  line-height: 1.3;
  text-align: center;
}

.wany-credit a {
  color: var(--white);
  background: linear-gradient(90deg, #ffffff, #9a9a9a, #ffffff);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: var(--weight-semibold);
  animation: wanyTextGradient 3.8s ease-in-out infinite;
}

@keyframes wanyTextGradient {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.admin-shell {
  min-height: calc(100svh - var(--header));
  display: grid;
  grid-template-columns: var(--admin-rail) 1fr;
  background: var(--paper);
}

.admin-rail {
  position: sticky;
  top: var(--header);
  height: calc(100svh - var(--header));
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 24px;
  border-right: 1px solid var(--line);
  background: var(--paper-strong);
}

.admin-logo {
  display: grid;
  gap: 5px;
}

.admin-logo strong {
  font-weight: var(--weight-semibold);
  font-size: 24px;
}

.admin-nav {
  display: grid;
  gap: 8px;
}

.admin-tab {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  padding: 10px 12px;
  cursor: pointer;
  text-align: left;
}

.admin-tab.is-active,
.admin-tab:hover {
  border-color: var(--line);
  background: var(--diamond);
}

.admin-main {
  min-width: 0;
  padding: clamp(18px, 3vw, 38px);
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}

.admin-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: var(--weight-medium);
  line-height: 1;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.metric {
  min-height: 132px;
  display: grid;
  align-content: space-between;
  padding: 16px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(16, 17, 20, 0.05);
}

.metric strong {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: var(--weight-semibold);
  line-height: 1;
}

.admin-panel {
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(16, 17, 20, 0.06);
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.panel-head h2,
.form-title {
  margin: 0;
  font-size: 22px;
  font-weight: var(--weight-medium);
}

.table-wrap {
  overflow: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

.admin-table th,
.admin-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.admin-table th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: var(--weight-semibold);
}

.admin-thumb {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--diamond);
}

.switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
}

.switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.switch-rail {
  width: 42px;
  height: 24px;
  border-radius: var(--radius);
  background: var(--diamond);
  transition: background 160ms ease;
}

.switch-rail::before {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  left: 3px;
  top: 3px;
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
  transition: transform 160ms ease;
}

.switch input:checked + .switch-rail {
  background: var(--accent);
}

.switch input:checked + .switch-rail::before {
  transform: translateX(18px);
}

.drawer {
  position: fixed;
  inset: var(--header) 0 0 auto;
  z-index: 40;
  width: min(620px, 100vw);
  display: none;
  grid-template-rows: auto 1fr auto;
  background: var(--paper-strong);
  border-left: 1px solid var(--line);
  box-shadow: -22px 0 50px rgba(0, 0, 0, 0.16);
}

.drawer.is-open {
  display: grid;
  animation: softSlideInRight 560ms cubic-bezier(0.18, 0.82, 0.22, 1) both;
}

.drawer-head,
.drawer-foot {
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.drawer-foot {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.drawer-body {
  padding: 18px;
  overflow: auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.is-wide {
  grid-column: 1 / -1;
}

.login-panel {
  width: min(440px, calc(100vw - 36px));
  margin: clamp(54px, 12vh, 120px) auto;
  padding: 26px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.login-panel h1 {
  margin: 0 0 18px;
  font-size: 42px;
  font-weight: var(--weight-medium);
  line-height: 1;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  max-width: min(420px, calc(100vw - 36px));
  display: none;
  padding: 13px 15px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
}

.toast.is-visible {
  display: block;
  animation: softToastIn 420ms cubic-bezier(0.18, 0.82, 0.22, 1) both;
}

.empty-state {
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 28px;
  color: var(--muted);
  text-align: center;
}

.json-box {
  min-height: 360px;
  font-family: var(--font-sans);
  font-size: 13px;
}

.hide {
  display: none !important;
}

@media (max-width: 1120px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  :root {
    --header: 60px;
  }

  .site-header {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    padding: 0 12px;
  }

  .menu-button {
    grid-column: 1;
    grid-row: 1;
    display: inline-grid;
    width: 38px;
    height: 38px;
  }

  .nav-list {
    display: none;
  }

  .header-dropdown {
    display: none !important;
  }

  .header-tools .header-item-downloads,
  .header-tools .header-item-about,
  .header-tools .header-item-contact,
  .header-tools .header-item-admin {
    display: none;
  }

  .brand-lockup {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    width: 136px;
    height: 40px;
    max-width: calc(100vw - 112px);
    margin-left: 0;
    font-size: 15px;
  }

  .tool-link:not(.keep-mobile) {
    display: none;
  }

  .header-tools {
    grid-column: 3;
    grid-row: 1;
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    gap: 6px;
    width: 38px;
    overflow: hidden;
  }

  .header-tools > * {
    display: none;
  }

  .header-tools > .icon-button {
    display: inline-grid;
    width: 38px;
    height: 38px;
  }

  .header-tools .icon-button {
    border-color: currentColor;
    background: transparent;
    color: inherit;
    opacity: 0.86;
  }

  .mega-panel {
    inset: var(--header) 0 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.98);
  }

  .mega-inner {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 18px;
    height: calc(100svh - var(--header));
    padding: 18px 14px 22px;
    overflow-y: auto;
  }

  .mega-inner > .mega-column {
    min-width: 0;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }

  .mega-inner > .mega-column:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .mega-list {
    margin-top: 10px;
    gap: 8px;
  }

  .mega-main-list,
  .mega-category-list,
  .mega-audience-list,
  .mega-studio-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mega-main-list .mega-link,
  .mega-category-list .mega-link,
  .mega-audience-list .mega-link,
  .mega-studio-list .mega-link {
    width: 100%;
    min-height: 42px;
    justify-content: flex-start;
    gap: 8px;
    padding: 9px 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: var(--weight-semibold);
    line-height: 1.18;
  }

  .mega-main-list .mega-link {
    min-height: 46px;
    font-size: 14px;
  }

  .mega-category-list .mega-link span,
  .mega-main-list .mega-link span,
  .mega-studio-list .mega-link span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mega-category-list .mega-link small {
    margin-left: auto;
    font-size: 10px;
  }

  .mega-category-list .header-link-icon,
  .mega-main-list .header-link-icon,
  .mega-studio-list .header-link-icon {
    width: 15px;
    font-size: 13px;
  }

  .mega-all-categories {
    grid-column: 1 / -1;
  }

  .mega-all-categories .mega-link {
    justify-content: center;
    background: var(--ink);
    color: var(--white);
  }

  .search-results {
    grid-template-columns: 1fr;
  }

  .story-grid,
  .reference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
  }

  .hero {
    min-height: 82svh;
    padding: calc(var(--header) + 22px) 16px 124px;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.06;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    padding-bottom: 0;
  }

  .hero-kicker {
    gap: 8px 12px;
    margin-bottom: 12px;
  }

  .hero-kicker span,
  .hero-kicker strong {
    font-size: 11px;
  }

  .hero p {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.42;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .hero-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
  }

  .hero-actions .button,
  .hero-actions .ghost-button {
    width: auto;
    min-width: 0;
    min-height: 40px;
    justify-content: center;
    padding: 10px 11px;
    font-size: 13px;
  }

  .hero-actions .button span,
  .hero-actions .ghost-button span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-slider-controls {
    right: 16px;
    bottom: 16px;
    left: 16px;
    width: auto;
    gap: 9px;
    padding: 10px;
  }

  .reference-logo-section {
    padding: 24px 0 34px;
  }

  .reference-logo-head {
    min-height: 164px;
    margin-bottom: 14px;
    padding: 30px 14px;
  }

  .reference-logo-head::before {
    font-size: 76px;
  }

  .reference-logo-head .section-title {
    font-size: 22px;
    line-height: 1.08;
  }

  .reference-logo-head p:not(.eyebrow) {
    max-width: 560px;
    font-size: 14px;
  }

  .reference-logo-card {
    flex-basis: 106px;
    height: 56px;
    padding: 8px;
  }

  .category-banner-head,
  .category-banner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-banner-head .eyebrow {
    grid-column: 1 / -1;
  }

  .category-banner-card:nth-child(1),
  .category-banner-card:nth-child(6) {
    grid-column: span 1;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
  }

  .catalog-hero {
    min-height: 560px;
    padding: calc(var(--header) + 40px) 14px 38px;
  }

  .catalog-hero .page-title {
    font-size: clamp(42px, 14vw, 76px);
    line-height: 0.96;
  }

  .catalog-hero-copy {
    gap: 16px;
  }

  .catalog-hero-copy > p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.45;
  }

  .catalog-stats {
    width: 100%;
    max-width: 440px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-hero {
    min-height: 680px;
    grid-template-columns: 1fr;
    align-items: end;
    gap: 18px;
    padding: calc(var(--header) + 44px) 14px 30px;
  }

  .contact-hero-copy {
    gap: 15px;
  }

  .contact-hero-copy h1 {
    font-size: clamp(42px, 12vw, 78px);
    line-height: 0.98;
  }

  .contact-hero-copy > p {
    max-width: 560px;
    font-size: 16px;
    line-height: 1.45;
  }

  .contact-hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .contact-hero-actions .button,
  .contact-hero-actions .ghost-button {
    width: auto;
    min-width: 0;
    justify-content: center;
    padding-inline: 10px;
    font-size: 13px;
  }

  .contact-quick-panel {
    padding: 13px;
  }

  .contact-layout {
    padding: 34px 14px;
  }

  .contact-map-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .contact-map-copy {
    gap: 13px;
    padding: 24px;
  }

  .contact-map-frame,
  .contact-map-frame iframe {
    min-height: 360px;
  }

  .contact-process {
    padding: 0 14px 64px;
  }

  .contact-step-grid {
    grid-template-columns: 1fr;
  }

  .feature-band,
  .feature-band.is-light,
  .story-detail,
  .product-detail,
  .catalog-layout,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .feature-band {
    min-height: 0;
  }

  .feature-media {
    margin: 0;
  }

  .feature-media img {
    min-height: 0;
    height: clamp(260px, 54vw, 430px);
    aspect-ratio: 16 / 10;
  }

  .feature-copy {
    gap: 16px;
    padding: 28px 18px 34px;
  }

  .feature-title {
    max-width: 720px;
    font-size: clamp(34px, 9vw, 58px);
    line-height: 1.02;
  }

  .feature-copy p {
    max-width: 680px;
    font-size: 16px;
    line-height: 1.5;
  }

  .filter-panel,
  .story-detail-media,
  .detail-media {
    position: static;
  }

  .filter-panel {
    display: grid;
  }

  .catalog-filter-panel {
    gap: 13px;
    padding: 12px;
  }

  .filter-row {
    grid-template-columns: 1fr;
    overflow: visible;
    flex-wrap: initial;
    padding-bottom: 0;
  }

  .filter-group {
    min-width: 0;
  }

  .filter-chip-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-results-head {
    align-items: flex-start;
  }

  .footer-actions,
  .footer-bottom {
    justify-content: flex-start;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand-block,
  .footer-cta {
    grid-column: 1 / -1;
  }

  .footer-cta {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-rail {
    position: sticky;
    top: var(--header);
    z-index: 20;
    height: auto;
    padding: 10px 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .admin-logo {
    display: none;
  }

  .admin-nav {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 3px;
  }

  .admin-tab {
    white-space: nowrap;
    min-width: max-content;
  }

  .admin-topbar {
    flex-direction: column;
  }

  .drawer {
    inset: var(--header) 0 0;
    width: 100vw;
  }
}

@media (max-width: 560px) {
  :root {
    --header: 58px;
  }

  .site-header {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    padding: 0 10px;
  }

  .menu-button,
  .header-tools > .icon-button {
    width: 36px;
    height: 36px;
  }

  .brand-lockup {
    width: 118px;
    height: 36px;
    max-width: calc(100vw - 98px);
    font-size: 14px;
  }

  .mega-inner {
    gap: 15px;
    padding: 15px 12px 18px;
  }

  .mega-inner > .mega-column {
    padding-top: 12px;
  }

  .mega-title,
  .mega-title-row a {
    font-size: 10px;
  }

  .mega-list {
    gap: 7px;
    margin-top: 8px;
  }

  .mega-main-list .mega-link,
  .mega-category-list .mega-link,
  .mega-audience-list .mega-link,
  .mega-studio-list .mega-link {
    min-height: 40px;
    padding: 8px 9px;
    font-size: 12px;
  }

  .mega-main-list .mega-link {
    min-height: 43px;
    font-size: 13px;
  }

  .hero {
    min-height: 82svh;
    padding: calc(var(--header) + 20px) 14px 112px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    max-width: min(312px, calc(100vw - 64px));
    font-size: 15px;
    -webkit-line-clamp: 4;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-actions .button,
  .hero-actions .ghost-button {
    width: 100%;
    min-width: 0;
    min-height: 38px;
    gap: 7px;
    padding: 9px 8px;
    font-size: 12px;
  }

  .hero-slider-controls {
    right: 14px;
    left: 14px;
    bottom: 14px;
    width: auto;
    padding: 9px;
  }

  .hero-progress {
    height: 2px;
  }

  .hero-control-row {
    gap: 6px;
  }

  .hero-counter {
    display: none;
  }

  .hero-arrow,
  .hero-autoplay {
    width: 32px;
    height: 32px;
  }

  .hero-dots {
    gap: 6px;
  }

  .hero-dot {
    flex-basis: 16px;
    max-width: 28px;
  }

  .hero-dot.is-active {
    flex-basis: 34px;
  }

  .feature-media img {
    height: 238px;
    aspect-ratio: 4 / 3;
    object-position: 52% 50%;
  }

  .feature-copy {
    gap: 13px;
    padding: 24px 14px 30px;
  }

  .feature-copy .eyebrow {
    font-size: 12px;
  }

  .feature-title {
    max-width: 360px;
    font-size: 34px;
    line-height: 1.04;
  }

  .feature-copy p {
    font-size: 14px;
    line-height: 1.48;
  }

  .contact-hero {
    min-height: 640px;
    padding: calc(var(--header) + 34px) 12px 24px;
  }

  .contact-hero-copy h1 {
    font-size: 39px;
    line-height: 1.03;
  }

  .contact-hero-copy > p {
    font-size: 14px;
  }

  .contact-hero-actions {
    grid-template-columns: 1fr;
  }

  .contact-quick-panel {
    gap: 9px;
    padding: 11px;
  }

  .contact-quick-panel > strong {
    font-size: 18px;
  }

  .contact-line {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 9px;
    padding: 9px;
  }

  .contact-line i {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

  .contact-line strong {
    font-size: 12px;
  }

  .contact-layout {
    gap: 18px;
    padding: 24px 12px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-info-card {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 11px;
    padding: 13px;
  }

  .contact-info-icon {
    width: 38px;
    height: 38px;
  }

  .contact-info-body strong {
    font-size: 13px;
  }

  .contact-map-copy {
    padding: 20px;
  }

  .contact-map-copy h2 {
    font-size: 30px;
  }

  .contact-map-frame,
  .contact-map-frame iframe {
    min-height: 310px;
  }

  .contact-process {
    padding: 0 12px 54px;
  }

  .contact-process-head h2 {
    font-size: 30px;
  }

  .contact-step {
    padding: 16px;
  }

  .contact-step span {
    margin-bottom: 22px;
  }

  .reference-logo-section {
    padding: 22px 0 30px;
  }

  .reference-logo-head {
    min-height: 132px;
    padding: 24px 12px;
    margin-bottom: 12px;
  }

  .reference-logo-head::before {
    max-width: none;
    font-size: 44px;
    filter: blur(4px);
  }

  .reference-logo-head .section-title {
    font-size: 18px;
  }

  .reference-logo-head p:not(.eyebrow) {
    display: none;
  }

  .reference-logo-marquee {
    gap: 8px;
    padding-top: 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  }

  .reference-logo-track {
    gap: 8px;
    animation-duration: 34s;
  }

  .reference-logo-row.is-right .reference-logo-track {
    animation-duration: 38s;
  }

  .reference-logo-card {
    flex-basis: 92px;
    height: 50px;
    padding: 7px;
  }

  .reference-logo-card img {
    width: 80%;
    height: 76%;
  }

  .story-grid,
  .reference-grid {
    gap: 16px 10px;
  }

  .story-media,
  .reference-media {
    aspect-ratio: 4 / 3;
  }

  .story-info,
  .reference-info {
    padding-top: 9px;
  }

  .story-info h3,
  .reference-info h3 {
    font-size: 17px;
    line-height: 1.1;
  }

  .story-kicker,
  .story-excerpt,
  .reference-label,
  .reference-summary {
    font-size: 12px;
  }

  .story-card p,
  .reference-card p {
    margin-top: 5px;
  }

  .catalog-hero {
    min-height: 500px;
    padding: calc(var(--header) + 32px) 12px 30px;
  }

  .catalog-hero-copy {
    gap: 14px;
  }

  .catalog-hero .page-title {
    font-size: clamp(36px, 11vw, 52px);
    line-height: 1.02;
  }

  .catalog-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .catalog-stats span {
    min-height: 64px;
    padding: 9px;
  }

  .catalog-stats strong {
    font-size: 22px;
  }

  .catalog-stats small {
    font-size: 10px;
  }

  .catalog-layout {
    gap: 22px;
    padding: 18px 12px 56px;
  }

  .catalog-filter-panel {
    padding: 11px;
  }

  .filter-summary {
    align-items: flex-start;
  }

  .check-row span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-height: 34px;
    padding: 8px;
    font-size: 11px;
  }

  .filter-row {
    gap: 14px;
  }

  .filter-chip-list {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 3px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .filter-chip-list::-webkit-scrollbar {
    display: none;
  }

  .filter-chip-list .check-row {
    flex: 0 0 min(170px, 48vw);
    scroll-snap-align: start;
  }

  .catalog-results-head {
    display: grid;
    gap: 12px;
  }

  .catalog-results-head h2 {
    font-size: 32px;
  }

  .story-more,
  .reference-more {
    margin-top: 8px;
    font-size: 10px;
    letter-spacing: 0.04em;
  }

  .story-detail {
    padding: calc(var(--header) + 18px) 14px 54px;
  }

  .story-detail-copy h1 {
    font-size: 32px;
  }

  .site-footer {
    padding: 40px 14px 26px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 28px;
  }

  .footer-brand-block {
    gap: 15px;
  }

  .footer-logo {
    width: 210px;
    height: 68px;
  }

  .footer-text {
    font-size: 14px;
  }

  .footer-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-badges span {
    justify-content: flex-start;
    min-height: 34px;
    font-size: 11px;
  }

  .footer-col h3 {
    margin-bottom: 11px;
  }

  .footer-link-list {
    gap: 8px;
  }

  .footer-link-list.is-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 10px;
  }

  .footer-link-list a,
  .footer-contact-link {
    font-size: 13px;
  }

  .footer-cta {
    gap: 16px;
    padding-top: 24px;
  }

  .footer-cta-copy strong {
    font-size: 22px;
  }

  .footer-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-bottom {
    gap: 14px;
    padding-top: 22px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .category-banner-head {
    grid-template-columns: 1fr;
  }

  .category-banner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .category-banner-head .section-title {
    font-size: 40px;
  }

  .category-banner-card {
    min-height: 154px;
  }

  .category-banner-content {
    grid-template-columns: minmax(0, 1fr) 30px;
    gap: 8px;
    padding: 12px;
  }

  .category-banner-text strong {
    font-size: 17px;
    line-height: 1.08;
  }

  .category-banner-text small {
    font-size: 10px;
  }

  .category-banner-arrow {
    width: 30px;
    height: 30px;
    font-size: 17px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 10px;
  }

  .admin-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .gallery-thumb {
    flex-basis: 68px;
    width: 68px;
    height: 68px;
  }

  .product-media {
    aspect-ratio: 5 / 4;
  }

  .product-info {
    gap: 5px;
    padding-top: 10px;
  }

  .product-category {
    gap: 5px;
    font-size: 9px;
    letter-spacing: 0.04em;
  }

  .product-category i {
    width: 12px;
    flex-basis: 12px;
  }

  .product-info h3 {
    font-size: 14px;
    line-height: 1.18;
  }

  .product-meta {
    font-size: 10px;
    line-height: 1.35;
  }

  .product-excerpt {
    display: none;
  }

  .tag-row {
    left: 8px;
    top: 8px;
    gap: 5px;
  }

  .tag {
    min-height: 22px;
    padding: 4px 6px;
    font-size: 9px;
  }

  .tag-row .tag:nth-child(n + 2) {
    display: none;
  }

  .product-card-action {
    right: 8px;
    bottom: 8px;
    width: 30px;
    min-height: 28px;
    justify-content: center;
    gap: 5px;
    padding: 0;
    font-size: 10px;
    opacity: 1;
    transform: none;
  }

  .product-card-action span {
    display: none;
  }

  .spec-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .button,
  .ghost-button,
  .danger-button {
    width: 100%;
  }

  .panel-head,
  .admin-actions,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

.mega-lead,
.mega-mobile-cta {
  display: none;
}

@media (max-width: 860px) {
  .mega-panel {
    background: var(--white);
  }

  .mega-inner {
    gap: 0;
    padding: 18px 22px 30px;
  }

  .mega-inner > .mega-column {
    padding: 18px 0;
    border-top: 1px solid var(--line);
  }

  .mega-primary-column {
    padding-top: 4px !important;
  }

  .mega-title {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    font-weight: var(--weight-bold);
    letter-spacing: 0.1em;
  }

  .mega-title-row {
    align-items: baseline;
  }

  .mega-title-row a {
    color: var(--accent);
    font-size: 12px;
  }

  .mega-lead {
    display: block;
    max-width: 310px;
    margin: 12px 0 0;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.45;
  }

  .mega-list {
    margin-top: 14px;
    gap: 0;
  }

  .mega-main-list,
  .mega-category-list,
  .mega-audience-list,
  .mega-studio-list {
    display: grid;
    grid-template-columns: 1fr;
    border-top: 1px solid var(--line);
  }

  .mega-main-list .mega-link,
  .mega-category-list .mega-link,
  .mega-audience-list .mega-link,
  .mega-studio-list .mega-link {
    width: 100%;
    min-height: 0;
    justify-content: flex-start;
    gap: 11px;
    padding: 13px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--ink);
    line-height: 1.22;
  }

  .mega-main-list .mega-link {
    min-height: 56px;
    font-size: 24px;
    font-weight: var(--weight-medium);
  }

  .mega-main-list .mega-link span,
  .mega-category-list .mega-link span,
  .mega-studio-list .mega-link span {
    white-space: normal;
  }

  .mega-main-list .header-link-icon {
    width: 22px;
    color: var(--accent);
    font-size: 16px;
  }

  .mega-category-list .mega-link,
  .mega-audience-list .mega-link,
  .mega-studio-list .mega-link {
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: var(--weight-medium);
  }

  .mega-category-list .header-link-icon,
  .mega-studio-list .header-link-icon {
    width: 17px;
    color: var(--muted);
    font-size: 13px;
  }

  .mega-studio-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 18px;
  }

  .mega-studio-list .mega-link {
    min-height: 42px;
    padding: 10px 0;
  }

  .mega-mobile-cta {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
    padding: 12px 14px;
    border-radius: var(--radius);
    background: var(--ink);
    color: var(--white);
    font-size: 14px;
    font-weight: var(--weight-semibold);
  }
}

@media (max-width: 560px) {
  .mega-inner {
    padding: 16px 18px 28px;
  }

  .mega-main-list .mega-link {
    min-height: 52px;
    font-size: 22px;
  }

  .mega-category-list .mega-link,
  .mega-audience-list .mega-link,
  .mega-studio-list .mega-link {
    padding: 12px 0;
    font-size: 14px;
  }
}

/* Doodle homepage hero */
.hero.hero-doodle {
  min-height: 100svh;
  display: block;
  padding: var(--header) 0 0;
  background: #ffffff;
  color: var(--ink);
  overflow: hidden;
  isolation: isolate;
}

.hero.hero-doodle::before {
  content: "";
  position: absolute;
  inset: -3%;
  z-index: 0;
  background: url("/assets/sema/hero-background.jpg") center / cover no-repeat, #ffffff;
  opacity: 0.32;
}

.hero.hero-doodle::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 52% 52%, rgba(255, 255, 255, 0.42) 0 13%, rgba(255, 255, 255, 0.18) 32%, rgba(255, 255, 255, 0) 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0) 16%, rgba(255, 255, 255, 0) 84%, rgba(255, 255, 255, 0.46));
  mix-blend-mode: normal;
}

.hero-doodle-stage {
  position: relative;
  z-index: 2;
  width: min(1320px, 100%);
  min-height: calc(100svh - var(--header));
  margin: 0 auto;
  padding: clamp(14px, 2.4vh, 28px) clamp(14px, 2vw, 36px) 0;
  isolation: isolate;
}

.hero-doodle-stage::before {
  content: "";
  position: absolute;
  left: 52%;
  bottom: 0;
  z-index: 5;
  width: min(34vw, 390px);
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.12) 46%, rgba(0, 0, 0, 0) 76%);
  filter: blur(10px);
  transform: translateX(-34%) rotate(-8deg) skewX(-18deg);
  pointer-events: none;
}

.hero-doodle-stage::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 4;
  width: min(78vw, 760px);
  height: 1px;
  background: rgba(16, 17, 20, 0.13);
  transform: translateX(-50%);
}

.hero-doodle-title {
  position: absolute;
  top: clamp(-10px, -0.8vh, -4px);
  left: 50%;
  z-index: 8;
  display: grid;
  place-items: center;
  gap: 0;
  color: #050505;
  font-family: "Anton", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(22px, 2.7vw, 40px);
  font-weight: 400;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 0 #ffffff;
  transform: translateX(-50%);
  animation: heroTitleEnter 850ms cubic-bezier(0.18, 0.82, 0.22, 1) both;
  pointer-events: none;
}

.hero-doodle-title span {
  display: block;
}

.hero-doodle-note {
  position: absolute;
  left: clamp(28px, 4.2vw, 78px);
  top: clamp(300px, 42vh, 430px);
  z-index: 4;
  width: min(310px, 24vw);
  margin: 0;
  color: rgba(16, 17, 20, 0.78);
  font-size: clamp(13px, 0.95vw, 15px);
  font-weight: var(--weight-medium);
  line-height: 1.52;
  text-shadow: 0 1px 0 #ffffff, 0 0 16px #ffffff;
  transform: rotate(-3deg);
  animation: heroNoteIn 780ms cubic-bezier(0.18, 0.82, 0.22, 1) 420ms both;
}

.hero-doodle-links {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.hero-word {
  --tilt: 0deg;
  position: absolute;
  display: grid;
  gap: 7px;
  color: #050505;
  font-family: "Permanent Marker", Impact, "Arial Black", sans-serif;
  font-size: clamp(17px, 2.2vw, 32px);
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 1px 0 #ffffff;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke: 0.5px currentColor;
  transform: translate3d(0, 0, 0) rotate(var(--tilt));
  transform-origin: center;
  transition: transform 220ms ease, filter 220ms ease, color 220ms ease;
  animation: heroWordPop 760ms cubic-bezier(0.18, 0.82, 0.22, 1) var(--delay, 180ms) both;
  pointer-events: auto;
  will-change: transform;
}

.hero-word::before {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -7px;
  height: 11px;
  z-index: -1;
  border: 3px solid currentColor;
  border-top: 0;
  border-radius: 50%;
  opacity: 0.85;
  transform: scaleX(0.92) translateY(0);
  transition: opacity 180ms ease, transform 220ms ease;
}

.hero-word span {
  display: block;
}

.hero-word small {
  width: max-content;
  max-width: 100%;
  color: rgba(16, 17, 20, 0.72);
  font-size: clamp(10px, 0.82vw, 13px);
  font-weight: var(--weight-bold);
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 180ms ease, transform 220ms ease;
}

.hero-word:hover,
.hero-word:focus-visible {
  color: #000000;
  filter: drop-shadow(0 14px 16px rgba(0, 0, 0, 0.13));
  outline: 0;
  transform: translate3d(0, -5px, 0) rotate(var(--tilt)) scale(1.045);
}

.hero-word:hover::before,
.hero-word:focus-visible::before {
  opacity: 1;
  transform: scaleX(1) translateY(0);
}

.hero-word:hover small,
.hero-word:focus-visible small {
  opacity: 1;
  transform: translateY(0);
}

.hero-word.is-services {
  --tilt: -12deg;
  --delay: 220ms;
  left: clamp(88px, 13vw, 190px);
  top: clamp(138px, 23vh, 214px);
}

.hero-word.is-references {
  --tilt: 10deg;
  --delay: 320ms;
  right: clamp(104px, 13vw, 196px);
  top: clamp(200px, 33vh, 284px);
}

.hero-word.is-about {
  --tilt: 13deg;
  --delay: 420ms;
  left: clamp(78px, 13vw, 206px);
  bottom: clamp(86px, 14vh, 132px);
}

.hero-word.is-blog {
  --tilt: -12deg;
  --delay: 520ms;
  right: clamp(160px, 23vw, 360px);
  bottom: clamp(46px, 8vh, 82px);
}

.hero-person-wrap {
  position: absolute;
  left: 52%;
  bottom: -6px;
  z-index: 7;
  width: min(56vw, 660px);
  height: min(94svh, 860px);
  margin: 0;
  transform: translateX(-50%) rotate(0deg);
  transform-origin: 50% 100%;
  animation: heroPersonLand 920ms cubic-bezier(0.18, 0.82, 0.22, 1) 160ms both;
  pointer-events: none;
}

.hero-person-shadow {
  position: absolute;
  left: 50%;
  bottom: 0.6%;
  z-index: 0;
  width: 46%;
  height: 6.5%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.18) 38%, rgba(0, 0, 0, 0) 74%);
  filter: blur(9px);
  transform: translateX(-38%) rotate(10deg) skewX(-14deg);
}

.hero-person-wrap::after {
  content: "";
  position: absolute;
  left: 52%;
  bottom: 4.4%;
  z-index: 0;
  width: 34%;
  height: 18%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0) 70%);
  filter: blur(18px);
  transform: translateX(-50%) rotate(-8deg);
}

.hero-person-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter:
    drop-shadow(0 20px 11px rgba(0, 0, 0, 0.22))
    drop-shadow(28px 18px 28px rgba(0, 0, 0, 0.16));
  animation: heroPersonPresence 7s ease-in-out 1.2s infinite alternate;
  will-change: transform;
}

@keyframes heroDoodleDrift {
  from {
    transform: translate3d(-9px, -6px, 0) scale(1.025);
  }
  to {
    transform: translate3d(9px, 6px, 0) scale(1.035);
  }
}

@keyframes heroTitleEnter {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-18px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@keyframes heroWordPop {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0) rotate(var(--tilt)) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(var(--tilt)) scale(1);
  }
}

@keyframes heroPersonLand {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(34px) rotate(0deg) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) rotate(0deg) scale(1);
  }
}

@keyframes heroPersonPresence {
  from {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  to {
    transform: translate3d(0, -3px, 0) rotate(0.4deg);
  }
}

@keyframes heroNoteIn {
  from {
    opacity: 0;
    transform: translateY(16px) rotate(-5deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(-3deg);
  }
}

@media (max-width: 1100px) {
  .hero.hero-doodle .hero-doodle-note {
    display: none;
  }

  .hero-person-wrap {
    width: min(70vw, 660px);
    height: min(94svh, 860px);
  }

  .hero-word {
    font-size: clamp(14px, 2.3vw, 25px);
  }

  .hero-word.is-services {
    left: clamp(34px, 7vw, 92px);
    top: clamp(150px, 24vh, 220px);
  }

  .hero-word.is-references {
    right: clamp(26px, 6vw, 72px);
    top: clamp(226px, 36vh, 312px);
  }

  .hero-word.is-about {
    left: clamp(24px, 7vw, 92px);
    bottom: clamp(96px, 18vh, 150px);
  }

  .hero-word.is-blog {
    right: clamp(44px, 11vw, 132px);
    bottom: clamp(64px, 12vh, 108px);
  }
}

@media (max-width: 720px) {
  .hero.hero-doodle {
    min-height: max(720px, 100svh);
    padding-top: var(--header);
  }

  .hero-doodle-stage {
    min-height: calc(max(720px, 100svh) - var(--header));
    padding: 12px 12px 0;
  }

  .hero-doodle-stage::before {
    left: 58%;
    width: min(58vw, 250px);
    height: 38px;
    transform: translateX(-34%) rotate(-10deg) skewX(-18deg);
  }

  .hero.hero-doodle::before {
    inset: -3%;
    background: url("/assets/sema/hero-background.jpg") center / cover no-repeat, #ffffff;
  }

  .hero.hero-doodle::after {
    background:
      radial-gradient(ellipse at 52% 55%, rgba(255, 255, 255, 0.32) 0 16%, rgba(255, 255, 255, 0.08) 44%, rgba(255, 255, 255, 0) 70%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0) 82%, rgba(255, 255, 255, 0.44));
  }

  .hero-doodle-title {
    top: 8px;
    left: 50%;
    font-size: clamp(15px, 5.4vw, 22px);
  }

  .hero-person-wrap {
    left: 55%;
    bottom: -4px;
    width: min(122vw, 540px);
    height: min(88svh, 760px);
    transform: translateX(-50%) rotate(0deg);
  }

  .hero-person-img {
    filter:
      drop-shadow(0 21px 15px rgba(0, 0, 0, 0.18))
      drop-shadow(14px 9px 18px rgba(0, 0, 0, 0.12));
  }

  .hero-word {
    gap: 0;
    font-size: clamp(13px, 4vw, 18px);
  }

  .hero-word small {
    display: none;
  }

  .hero-word::before {
    bottom: -9px;
    height: 9px;
    border-width: 2px;
    opacity: 0.86;
    transform: scaleX(1) translateY(0);
  }

  .hero-word.is-services {
    left: 20vw;
    top: 23%;
  }

  .hero-word.is-references {
    right: 30vw;
    top: 34%;
    font-size: clamp(10px, 3.3vw, 14px);
  }

  .hero-word.is-about {
    left: 12vw;
    bottom: 20%;
  }

  .hero-word.is-blog {
    right: 30vw;
    bottom: 16%;
  }
}

@media (max-width: 390px) {
  .hero-word {
    font-size: clamp(12px, 3.8vw, 17px);
  }

  .hero-word.is-references {
    top: 34%;
    right: 28vw;
    font-size: clamp(9px, 3vw, 13px);
  }

  .hero-word.is-about {
    bottom: 23%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero.hero-doodle::before,
  .hero-doodle-title,
  .hero-word,
  .hero-person-wrap,
  .hero-person-img,
  .hero-doodle-note {
    animation: none !important;
    transition: none !important;
  }
}

/* Mobile responsiveness pass */
html {
  -webkit-text-size-adjust: 100%;
}

:where(h1, h2, h3, h4, p, li, a, button, span, strong, small, label, input, textarea, select) {
  min-width: 0;
}

:where(.page-title, .section-title, .feature-title, .hero h1, .contact-hero-copy h1, .catalog-results-head h2, .product-info h3, .story-info h3, .reference-info h3) {
  overflow-wrap: anywhere;
}

.catalog-title {
  display: grid;
  gap: 0;
}

.catalog-title span {
  display: block;
}

@media (max-width: 860px) {
  .page-intro,
  .section,
  .catalog-layout,
  .contact-layout,
  .contact-process {
    padding-inline: 14px;
  }

  .page-title {
    font-size: clamp(38px, 13vw, 78px);
    line-height: 1.02;
  }

  .section > .section-head {
    min-height: clamp(104px, 25vw, 152px);
    gap: 12px;
  }

  .section > .section-head .text-button {
    min-height: 38px;
    padding-inline: 12px;
  }

  .hero:not(.hero-doodle) {
    align-items: end;
    min-height: max(680px, 92svh);
    padding: calc(var(--header) + 18px) 16px 116px;
  }

  .hero:not(.hero-doodle)::before {
    background:
      linear-gradient(180deg, rgba(13, 13, 13, 0.06) 0%, rgba(13, 13, 13, 0.26) 36%, rgba(13, 13, 13, 0.88) 100%),
      linear-gradient(90deg, rgba(13, 13, 13, 0.5), rgba(13, 13, 13, 0.2));
  }

  .hero-image {
    object-position: center top;
  }

  .hero-image[src*="sema-diamond"],
  .hero-image[src*="hero-sema-diamond"] {
    height: 60%;
    object-fit: contain;
    object-position: top center;
    padding: calc(var(--header) + 6px) 8px 0;
    animation: none;
    transform: none;
  }

  .hero:not(.hero-doodle) .hero-copy {
    align-self: end;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
  }

  .feature-band:not(.is-light) {
    position: relative;
    min-height: max(650px, 92svh);
    display: grid;
    align-items: end;
    overflow: hidden;
    background: var(--night);
  }

  .feature-band:not(.is-light)::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(180deg, rgba(15, 18, 23, 0.02) 0%, rgba(15, 18, 23, 0.18) 36%, rgba(15, 18, 23, 0.78) 68%, rgba(15, 18, 23, 0.98) 100%),
      linear-gradient(90deg, rgba(15, 18, 23, 0.2), rgba(15, 18, 23, 0.02) 45%, rgba(15, 18, 23, 0.22));
  }

  .feature-band:not(.is-light) .feature-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    margin: 0;
    pointer-events: none;
  }

  .feature-band:not(.is-light) .feature-media img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    object-position: top center;
    padding: 14px 6px 0;
    opacity: 0.98;
  }

  .feature-band:not(.is-light) .feature-copy {
    position: relative;
    z-index: 2;
    align-content: end;
    min-height: max(650px, 92svh);
    padding: clamp(330px, 58svh, 460px) 16px 34px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
  }

  .feature-band:not(.is-light) .feature-title {
    max-width: 620px;
    font-size: clamp(33px, 8.6vw, 56px);
    line-height: 1.03;
  }

  .feature-band:not(.is-light) .feature-copy p:not(.eyebrow) {
    max-width: 540px;
    color: rgba(255, 255, 255, 0.86);
  }

  .feature-band.is-light .feature-media img {
    min-height: 0;
    height: clamp(360px, 86vw, 520px);
    object-fit: contain;
    object-position: top center;
    background: var(--paper-strong);
  }

  .contact-line,
  .download-card,
  .admin-panel,
  .catalog-filter-panel,
  .contact-quick-panel {
    min-width: 0;
  }
}

@media (max-width: 720px) {
  .hero.hero-doodle {
    min-height: max(760px, 100svh);
  }

  .hero-doodle-stage {
    min-height: calc(max(760px, 100svh) - var(--header));
    padding: 10px 10px 0;
  }

  .hero-doodle-title {
    top: clamp(6px, 1.4vh, 13px);
    z-index: 10;
    font-size: clamp(18px, 6.6vw, 29px);
    text-shadow: 0 2px 0 #ffffff, 0 12px 28px rgba(255, 255, 255, 0.75);
  }

  .hero-doodle-links {
    z-index: 9;
  }

  .hero-person-wrap {
    left: 55%;
    bottom: -10px;
    z-index: 7;
    width: min(108vw, 520px);
    height: min(86svh, 720px);
    animation-delay: 0ms;
  }

  .hero-person-img {
    object-position: bottom center;
  }

  .hero-word {
    z-index: 9;
    font-size: clamp(14px, 4.4vw, 21px);
    text-shadow: 0 2px 0 #ffffff, 0 8px 18px rgba(255, 255, 255, 0.85);
  }

  .hero-word.is-services {
    left: 7vw;
    top: 28%;
  }

  .hero-word.is-references {
    right: 12vw;
    top: 38%;
    font-size: clamp(12px, 3.9vw, 18px);
  }

  .hero-word.is-about {
    left: 6vw;
    bottom: 18%;
  }

  .hero-word.is-blog {
    right: 10vw;
    bottom: 13%;
  }
}

@media (max-width: 560px) {
  .page-intro,
  .section,
  .catalog-layout,
  .contact-layout,
  .contact-process {
    padding-inline: 12px;
  }

  .page-intro {
    padding-top: calc(var(--header) + 30px);
  }

  .section-title {
    font-size: clamp(32px, 10.5vw, 48px);
    line-height: 1.04;
  }

  .section > .section-head .text-button {
    width: auto;
  }

  .feature-band:not(.is-light) {
    min-height: max(680px, 96svh);
  }

  .feature-band:not(.is-light) .feature-media img {
    object-position: top center;
    padding-top: 8px;
  }

  .feature-band:not(.is-light) .feature-copy {
    min-height: max(680px, 96svh);
    padding: clamp(350px, 61svh, 470px) 14px 30px;
  }

  .feature-band:not(.is-light) .feature-title {
    font-size: clamp(30px, 8.9vw, 42px);
  }

  .feature-band:not(.is-light) .ghost-button {
    width: 100%;
    max-width: 290px;
  }

  .feature-band.is-light .feature-media img {
    height: clamp(330px, 94vw, 460px);
  }

  .catalog-hero .page-title,
  .contact-hero-copy h1,
  .story-detail-copy h1 {
    overflow-wrap: break-word;
  }

  .table-wrap {
    margin-inline: -12px;
    padding-inline: 12px;
  }
}

@media (max-width: 420px) {
  .hero.hero-doodle {
    min-height: max(740px, 100svh);
  }

  .hero-doodle-stage {
    min-height: calc(max(740px, 100svh) - var(--header));
  }

  .hero-person-wrap {
    left: 57%;
    width: min(112vw, 480px);
    height: min(84svh, 690px);
  }

  .hero-word.is-services {
    left: 5vw;
    top: 29%;
  }

  .hero-word.is-references {
    right: 16vw;
    top: 39%;
  }

  .hero-word.is-about {
    left: 4vw;
    bottom: 19%;
  }

  .hero-word.is-blog {
    right: 10vw;
    bottom: 12%;
  }

  .category-banner-grid,
  .filter-chip-list {
    grid-template-columns: 1fr;
  }

  .contact-hero-actions,
  .catalog-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .catalog-hero-copy,
  .contact-hero-copy,
  .feature-copy {
    width: 100%;
    min-width: 0;
  }

  .catalog-hero .page-title {
    max-width: min(100%, 620px);
    line-height: 1.02;
  }

  .feature-band.is-light .feature-copy {
    padding-top: calc(var(--header) + 22px);
  }
}

@media (max-width: 560px) {
  .catalog-hero {
    min-height: max(640px, 88svh);
  }

  .catalog-hero .page-title {
    font-size: clamp(32px, 9.8vw, 42px);
  }

  .catalog-hero-copy > p:not(.eyebrow) {
    max-width: min(100%, 340px);
    font-size: 14px;
  }

  .catalog-stats {
    grid-template-columns: 1fr;
    width: min(100%, 320px);
    gap: 8px;
  }

  .catalog-stats span {
    min-height: 54px;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    align-content: center;
    padding: 9px 11px;
  }

  .catalog-stats strong {
    font-size: 24px;
  }

  .feature-band.is-light .feature-copy {
    padding: calc(var(--header) + 20px) 14px 24px;
  }

  .feature-band.is-light .feature-title {
    font-size: clamp(31px, 9.6vw, 45px);
    line-height: 1.04;
  }

  .feature-band.is-light .feature-copy p:not(.eyebrow) {
    max-width: min(100%, 340px);
    font-size: 14px;
    line-height: 1.45;
  }
}

@media (max-width: 720px) {
  .hero-word.is-references {
    left: 52vw !important;
    right: auto !important;
    top: 38%;
    font-size: clamp(11px, 3.6vw, 15px);
  }
}

@media (max-width: 420px) {
  .hero-word.is-references {
    left: 50vw !important;
    right: auto !important;
    top: 39%;
  }
}

@media (max-width: 860px) {
  .feature-band:not(.is-light) .feature-media img {
    transform: translateY(clamp(58px, 10svh, 88px));
  }
}

@media (max-width: 720px) {
  .hero.hero-doodle .hero-word {
    width: max-content;
    max-width: 42vw;
    padding: 2px 4px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 0 18px 10px rgba(255, 255, 255, 0.55);
    font-size: clamp(12px, 3.7vw, 16px);
  }

  .hero.hero-doodle .hero-word::before {
    left: -4%;
    right: -4%;
    bottom: -7px;
  }

  .hero.hero-doodle .hero-word.is-services {
    --tilt: -9deg;
    left: 18px !important;
    right: auto !important;
    top: 31%;
  }

  .hero.hero-doodle .hero-word.is-references {
    --tilt: 8deg;
    left: auto !important;
    right: 18px !important;
    top: 24%;
    font-size: clamp(10px, 3.1vw, 13px);
  }

  .hero.hero-doodle .hero-word.is-about {
    --tilt: 10deg;
    left: 16px !important;
    right: auto !important;
    bottom: 17%;
  }

  .hero.hero-doodle .hero-word.is-blog {
    --tilt: -9deg;
    left: auto !important;
    right: 26px !important;
    bottom: 17%;
  }
}

@media (max-width: 420px) {
  .hero.hero-doodle .hero-word.is-services {
    left: 16px !important;
    top: 31%;
  }

  .hero.hero-doodle .hero-word.is-references {
    right: 16px !important;
    top: 24%;
  }

  .hero.hero-doodle .hero-word.is-about {
    left: 14px !important;
    bottom: 17%;
  }

  .hero.hero-doodle .hero-word.is-blog {
    right: 22px !important;
    bottom: 17%;
  }
}

@media (max-width: 720px) {
  .hero.hero-doodle .hero-word.is-services {
    left: 18px !important;
    right: auto !important;
    top: 30%;
  }

  .hero.hero-doodle .hero-word.is-references {
    left: 18px !important;
    right: auto !important;
    top: 37%;
    font-size: clamp(11px, 3.4vw, 15px);
  }

  .hero.hero-doodle .hero-word.is-about {
    left: 18px !important;
    right: auto !important;
    bottom: 17%;
  }

  .hero.hero-doodle .hero-word.is-blog {
    left: 28px !important;
    right: auto !important;
    bottom: 11%;
  }
}

@media (max-width: 420px) {
  .hero.hero-doodle .hero-word.is-services,
  .hero.hero-doodle .hero-word.is-references,
  .hero.hero-doodle .hero-word.is-about {
    left: 16px !important;
  }

  .hero.hero-doodle .hero-word.is-blog {
    left: 24px !important;
  }
}

@media (max-width: 720px) {
  .hero.hero-doodle .hero-person-wrap {
    left: 54%;
    bottom: 18px;
    width: min(94vw, 440px);
    height: min(78svh, 650px);
  }

  .hero.hero-doodle .hero-word {
    max-width: 39vw;
    padding: 2px 3px;
    background: rgba(255, 255, 255, 0.56);
    box-shadow: 0 0 16px 8px rgba(255, 255, 255, 0.48);
    font-size: clamp(12px, 3.5vw, 16px);
  }

  .hero.hero-doodle .hero-word.is-services {
    --tilt: -8deg;
    left: 18px !important;
    right: auto !important;
    top: 30%;
  }

  .hero.hero-doodle .hero-word.is-references {
    --tilt: 8deg;
    left: auto !important;
    right: 18px !important;
    top: 31%;
    font-size: clamp(10px, 3vw, 13px);
  }

  .hero.hero-doodle .hero-word.is-about {
    --tilt: 9deg;
    left: 18px !important;
    right: auto !important;
    bottom: 20%;
  }

  .hero.hero-doodle .hero-word.is-blog {
    --tilt: -8deg;
    left: auto !important;
    right: 24px !important;
    bottom: 20%;
  }
}

@media (max-width: 420px) {
  .hero.hero-doodle .hero-person-wrap {
    left: 54%;
    bottom: 18px;
    width: min(92vw, 410px);
    height: min(76svh, 620px);
  }

  .hero.hero-doodle .hero-word.is-services {
    left: 16px !important;
    top: 31%;
  }

  .hero.hero-doodle .hero-word.is-references {
    right: 16px !important;
    top: 32%;
  }

  .hero.hero-doodle .hero-word.is-about {
    left: 16px !important;
    bottom: 21%;
  }

  .hero.hero-doodle .hero-word.is-blog {
    right: 20px !important;
    bottom: 21%;
  }
}

@media (max-width: 720px) {
  .hero.hero-doodle .hero-doodle-links {
    z-index: 30;
  }

  .hero.hero-doodle .hero-person-wrap {
    left: 54%;
    bottom: 34px;
    z-index: 8;
    width: min(88vw, 410px);
    height: min(74svh, 610px);
  }

  .hero.hero-doodle .hero-word {
    z-index: 31;
    max-width: 40vw;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 0 14px 7px rgba(255, 255, 255, 0.62);
  }

  .hero.hero-doodle .hero-word.is-services {
    left: 18px !important;
    right: auto !important;
    top: 31%;
  }

  .hero.hero-doodle .hero-word.is-references {
    left: auto !important;
    right: 22px !important;
    top: 23%;
  }

  .hero.hero-doodle .hero-word.is-about {
    left: 18px !important;
    right: auto !important;
    bottom: 22%;
  }

  .hero.hero-doodle .hero-word.is-blog {
    left: auto !important;
    right: 34px !important;
    bottom: 22%;
  }
}

@media (max-width: 420px) {
  .hero.hero-doodle .hero-person-wrap {
    left: 54%;
    bottom: 34px;
    width: min(86vw, 390px);
    height: min(72svh, 590px);
  }

  .hero.hero-doodle .hero-word.is-services {
    left: 16px !important;
    top: 31%;
  }

  .hero.hero-doodle .hero-word.is-references {
    right: 18px !important;
    top: 23.5%;
  }

  .hero.hero-doodle .hero-word.is-about {
    left: 16px !important;
    bottom: 22%;
  }

  .hero.hero-doodle .hero-word.is-blog {
    right: 30px !important;
    bottom: 22%;
  }
}

@media (max-width: 720px) {
  .hero.hero-doodle .hero-doodle-links {
    z-index: 80 !important;
  }

  .hero.hero-doodle .hero-person-wrap {
    left: 53%;
    bottom: 42px;
    z-index: 5 !important;
    width: min(82vw, 380px);
    height: min(68svh, 560px);
  }

  .hero.hero-doodle .hero-word {
    z-index: 90 !important;
    color: #050505;
    background: #ffffff;
    box-shadow: 0 0 12px 6px rgba(255, 255, 255, 0.75);
  }

  .hero.hero-doodle .hero-word.is-services {
    left: 18px !important;
    right: auto !important;
    top: 31%;
  }

  .hero.hero-doodle .hero-word.is-references {
    left: auto !important;
    right: 30px !important;
    top: 14%;
  }

  .hero.hero-doodle .hero-word.is-about {
    left: 18px !important;
    right: auto !important;
    bottom: 24%;
  }

  .hero.hero-doodle .hero-word.is-blog {
    left: auto !important;
    right: 24px !important;
    top: 47%;
    bottom: auto !important;
  }
}

@media (max-width: 420px) {
  .hero.hero-doodle .hero-person-wrap {
    left: 53%;
    bottom: 42px;
    width: min(80vw, 360px);
    height: min(66svh, 540px);
  }

  .hero.hero-doodle .hero-word.is-services {
    left: 16px !important;
    top: 31%;
  }

  .hero.hero-doodle .hero-word.is-references {
    right: 26px !important;
    top: 14.5%;
  }

  .hero.hero-doodle .hero-word.is-about {
    left: 16px !important;
    bottom: 24%;
  }

  .hero.hero-doodle .hero-word.is-blog {
    right: 22px !important;
    top: 47%;
    bottom: auto !important;
  }
}

/* Professional mobile-first admin layer */
.admin-shell {
  background: #f5f5f3;
}

body.admin-route .page {
  min-height: 100svh;
}

body.admin-route .admin-shell {
  min-height: 100svh;
}

body.admin-route .admin-rail {
  top: 0;
  height: 100svh;
}

body.admin-route .drawer {
  inset: 0 0 0 auto;
}

.admin-logo {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.admin-tab {
  gap: 10px;
  min-height: 48px;
}

.admin-tab-label {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.admin-tab-label i {
  width: 20px;
  color: var(--muted);
  text-align: center;
}

.admin-tab-label b {
  overflow: hidden;
  font-weight: var(--weight-medium);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-tab.is-active .admin-tab-label i,
.admin-tab:hover .admin-tab-label i {
  color: var(--ink);
}

.admin-rail-actions {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.admin-topbar-note,
.admin-panel-subtitle {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.admin-actions,
.admin-panel-tools,
.manifest-links,
.social-admin-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.admin-panel-tools {
  justify-content: flex-end;
}

.admin-panel-tools .input {
  width: min(280px, 42vw);
}

.button.is-compact,
.ghost-button.is-compact {
  min-height: 36px;
  padding: 8px 12px;
  font-size: 13px;
}

.admin-overview-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 16px;
  margin-top: 16px;
}

.admin-recent-panel {
  grid-column: 1 / -1;
}

.admin-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
}

.admin-quick-action {
  min-height: 96px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.admin-quick-action:hover,
.admin-quick-action:focus-visible {
  border-color: var(--line-strong);
  box-shadow: 0 14px 28px rgba(16, 17, 20, 0.08);
  transform: translateY(-1px);
}

.admin-quick-action i {
  font-size: 20px;
}

.admin-quick-action span {
  font-weight: var(--weight-semibold);
  line-height: 1.2;
}

.admin-health-list {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.admin-health-list > div {
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.admin-health-list span:not(.admin-mini-pill) {
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 13px;
}

.admin-mini-pill,
.status-pill {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-strong);
  color: var(--ink);
  font-size: 12px;
  font-weight: var(--weight-medium);
  line-height: 1;
}

.status-pill.is-live {
  border-color: rgba(26, 127, 55, 0.28);
  background: rgba(26, 127, 55, 0.09);
  color: #176b34;
}

.status-pill.is-draft {
  border-color: rgba(176, 103, 0, 0.24);
  background: rgba(176, 103, 0, 0.1);
  color: #8a4c00;
}

.admin-card-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.admin-card-list.is-compact-list {
  padding: 16px;
}

.admin-content-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 14px;
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 30px rgba(16, 17, 20, 0.05);
}

.admin-card-media {
  position: relative;
  min-height: 138px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--diamond);
}

.admin-card-media img {
  width: 100%;
  height: 100%;
  min-height: 138px;
  display: block;
  object-fit: cover;
}

.admin-card-media .status-pill {
  position: absolute;
  left: 8px;
  top: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.admin-card-body {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 8px;
}

.admin-card-kicker {
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-card-body h3 {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: var(--weight-semibold);
  line-height: 1.12;
}

.admin-card-body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
}

.admin-card-meta,
.admin-inline-switches {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.admin-inline-switches span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
}

.admin-card-footer {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.admin-share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-share-actions.is-compact .button,
.admin-share-actions.is-compact .ghost-button {
  flex: 1 1 92px;
}

.admin-card-footer .card-actions {
  justify-content: flex-end;
}

.admin-table-details {
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.admin-table-details summary {
  padding: 13px 14px;
  cursor: pointer;
  font-weight: var(--weight-medium);
}

.admin-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 16px;
}

.admin-form-panel .drawer-body {
  display: grid;
  gap: 18px;
}

.admin-form-section-title {
  margin-top: 4px;
  padding-top: 4px;
  color: var(--ink);
  font-size: 12px;
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
}

.color-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px;
  gap: 8px;
}

.color-swatch {
  width: 46px;
  min-height: 42px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  cursor: pointer;
}

.admin-phone-preview {
  display: grid;
  justify-items: center;
  gap: 10px;
  max-width: 260px;
  min-height: 330px;
  margin: 0 auto 16px;
  padding: 34px 24px;
  border: 10px solid var(--ink);
  border-radius: 26px;
  background: var(--phone-bg, #ffffff);
  color: var(--ink);
  text-align: center;
  box-shadow: 0 18px 40px rgba(16, 17, 20, 0.14);
}

.admin-phone-preview::before {
  content: "";
  width: 52px;
  height: 5px;
  border-radius: 99px;
  background: rgba(16, 17, 20, 0.28);
}

.admin-phone-preview img {
  width: 84px;
  height: 84px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  object-fit: contain;
}

.admin-phone-preview strong {
  font-size: 18px;
  line-height: 1.2;
}

.admin-phone-preview span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.manifest-json-preview {
  max-height: 340px;
  overflow: auto;
  margin: 16px 0 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111318;
  color: #f8f8f2;
  font: 12px/1.5 Consolas, "Courier New", monospace;
  white-space: pre-wrap;
}

.share-story-list {
  display: grid;
  gap: 12px;
}

.share-story-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.share-story-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
}

.share-story-card strong {
  display: block;
  font-size: 17px;
  line-height: 1.25;
}

.share-story-card p {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 1180px) {
  .admin-card-list {
    grid-template-columns: 1fr;
  }

  .admin-overview-layout,
  .admin-two-column {
    grid-template-columns: 1fr;
  }

  .admin-manifest-preview-panel {
    order: -1;
  }
}

@media (max-width: 860px) {
  .admin-shell {
    min-height: calc(100svh - var(--header));
  }

  body.admin-route .admin-shell {
    min-height: 100svh;
  }

  .admin-rail {
    gap: 10px;
    overflow: hidden;
  }

  body.admin-route .admin-rail {
    top: 0;
    height: auto;
  }

  body.admin-route .drawer {
    inset: 0;
  }

  .admin-nav {
    scroll-padding-inline: 12px;
  }

  .admin-tab {
    flex: 0 0 auto;
    min-width: 138px;
    padding: 10px;
  }

  .admin-tab .fineprint {
    display: none;
  }

  .admin-rail-actions {
    display: none;
  }

  .admin-main {
    padding: 14px;
  }

  .admin-title {
    font-size: 32px;
  }

  .admin-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(104px, 1fr));
    width: 100%;
    gap: 8px;
  }

  .admin-panel-tools {
    width: 100%;
    justify-content: stretch;
  }

  .admin-actions .button,
  .admin-actions .ghost-button,
  .admin-panel-tools .button,
  .admin-panel-tools .input {
    width: 100%;
    min-height: 40px;
    padding: 8px 10px;
    font-size: 12px;
  }

  .admin-quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-content-card {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .admin-card-media,
  .admin-card-media img {
    min-height: 126px;
  }
}

@media (max-width: 560px) {
  .admin-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .metric {
    min-height: 104px;
    padding: 13px;
  }

  .metric strong {
    font-size: 30px;
  }

  .panel-head {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-quick-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .admin-content-card {
    grid-template-columns: 1fr;
  }

  .admin-card-media,
  .admin-card-media img {
    min-height: 190px;
  }

  .admin-share-actions .button,
  .admin-share-actions .ghost-button,
  .social-admin-actions .button,
  .social-admin-actions .ghost-button,
  .manifest-links .button,
  .manifest-links .ghost-button {
    flex: 1 1 calc(50% - 8px);
    padding-inline: 10px;
  }

  .admin-phone-preview {
    max-width: 230px;
    min-height: 300px;
  }
}

/* Admin panel stabilization */
body.admin-route {
  background: #f4f5f7;
  overflow-x: hidden;
}

body.admin-route.admin-drawer-open {
  overflow: hidden;
}

body.admin-route .page {
  min-height: 100dvh;
  background: #f4f5f7;
}

body.admin-route .sidebar.sidebar-default {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 1040;
  width: 280px;
  max-width: 86vw;
  height: 100dvh;
  border-right: 1px solid rgba(16, 17, 20, 0.1);
  background: #ffffff;
  box-shadow: 12px 0 34px rgba(16, 17, 20, 0.06);
  transform: translateX(0);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

body.admin-route .sidebar-header {
  min-height: 72px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(16, 17, 20, 0.08);
}

body.admin-route .sidebar-body {
  height: calc(100dvh - 72px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

body.admin-route .iq-main-menu .nav-link {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 2px 10px;
  padding: 10px 12px;
  border-radius: 8px;
  color: #2d3138;
  line-height: 1.25;
  white-space: normal;
}

body.admin-route .iq-main-menu .nav-link.active {
  background: #111318;
  color: #ffffff;
}

body.admin-route .iq-main-menu .nav-link .icon {
  width: 22px;
  flex: 0 0 22px;
  text-align: center;
}

body.admin-route .main-content {
  min-width: 0;
  min-height: 100dvh;
  margin-left: 280px;
  background: #f4f5f7;
}

body.admin-route .iq-navbar {
  position: sticky;
  top: 0;
  z-index: 1010;
  border-bottom: 1px solid rgba(16, 17, 20, 0.08);
  background: rgba(255, 255, 255, 0.94) !important;
  backdrop-filter: blur(14px);
}

body.admin-route .iq-navbar .navbar-inner {
  min-height: 66px;
  gap: 10px;
  padding-block: 10px;
}

body.admin-route .admin-top-actions {
  min-width: 0;
  justify-content: flex-end;
}

body.admin-route .admin-top-actions .btn {
  min-height: 38px;
  border-radius: 8px;
  white-space: nowrap;
}

body.admin-route .btn-primary,
body.admin-route .bg-primary:not(.iq-navbar-header) {
  border-color: #111318 !important;
  background: #111318 !important;
  color: #ffffff !important;
}

body.admin-route .btn-primary:hover,
body.admin-route .btn-primary:focus-visible {
  border-color: #2a2d33 !important;
  background: #2a2d33 !important;
}

body.admin-route .btn-soft-primary,
body.admin-route .bg-soft-primary {
  border-color: rgba(16, 17, 20, 0.08) !important;
  background: #eef1f4 !important;
  color: #16191f !important;
}

body.admin-route .btn-soft-primary:hover,
body.admin-route .btn-soft-primary:focus-visible {
  background: #e1e6ec !important;
  color: #101114 !important;
}

body.admin-route .text-primary {
  color: #15181d !important;
}

body.admin-route .badge.bg-soft-primary {
  background: #eef1f4 !important;
  color: #15181d !important;
}

body.admin-route .iq-navbar-header.bg-primary {
  height: auto !important;
  min-height: 190px;
  padding: 30px 0 74px;
  background: linear-gradient(135deg, #14171d 0%, #2a2d33 100%) !important;
}

body.admin-route .iq-navbar-header h1 {
  margin-bottom: 8px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
}

body.admin-route .content-inner.admin-content-inner {
  max-width: 1480px;
  margin-right: auto;
  margin-left: auto;
  padding-right: clamp(14px, 2.2vw, 28px);
  padding-bottom: 34px;
  padding-left: clamp(14px, 2.2vw, 28px);
}

body.admin-route .card {
  border: 1px solid rgba(16, 17, 20, 0.08);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(16, 17, 20, 0.06);
}

body.admin-route .card-header,
body.admin-route .card-body {
  min-width: 0;
}

body.admin-route .form-control,
body.admin-route .form-select {
  min-height: 42px;
  border-radius: 8px;
}

body.admin-route textarea.form-control {
  min-height: 118px;
  resize: vertical;
}

body.admin-route .table-responsive {
  border: 1px solid rgba(16, 17, 20, 0.08);
  border-radius: 8px;
}

body.admin-route .admin-sidebar-backdrop {
  display: none;
}

body.admin-route .offcanvas.admin-editor {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 1060;
  width: min(680px, 100vw);
  height: 100dvh;
  max-height: 100dvh;
  display: flex !important;
  flex-direction: column;
  overflow: hidden;
  border-left: 1px solid rgba(16, 17, 20, 0.1);
  background: #ffffff;
  box-shadow: -24px 0 52px rgba(16, 17, 20, 0.18);
  transform: none !important;
  visibility: visible !important;
}

body.admin-route .admin-editor .offcanvas-header {
  min-height: 64px;
  flex: 0 0 auto;
  gap: 12px;
  padding: 16px 18px;
}

body.admin-route .admin-editor .offcanvas-title {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 18px;
  line-height: 1.2;
}

body.admin-route .admin-editor-form {
  min-height: 0;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

body.admin-route .admin-editor-body {
  min-height: 0;
  flex: 1 1 auto;
  padding: 18px;
  overflow-x: hidden;
  overflow-y: auto !important;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

body.admin-route .admin-editor-body .row {
  --bs-gutter-x: 14px;
  --bs-gutter-y: 12px;
}

body.admin-route .admin-editor-body .form-group {
  margin-bottom: 12px;
}

body.admin-route .admin-editor-body .form-label {
  margin-bottom: 6px;
  color: #4a4f58;
  font-size: 13px;
  font-weight: 600;
}

body.admin-route .admin-editor-footer {
  flex: 0 0 auto;
  padding: 14px 18px calc(14px + env(safe-area-inset-bottom)) !important;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

body.admin-route .offcanvas-backdrop.show {
  z-index: 1050;
  opacity: 0.46;
}

@media (max-width: 1199.98px) {
  body.admin-route .sidebar.sidebar-default {
    transform: translateX(-104%);
    box-shadow: none;
  }

  body.admin-route .sidebar.sidebar-default:not(.sidebar-mini) {
    transform: translateX(0);
    box-shadow: 18px 0 44px rgba(16, 17, 20, 0.18);
  }

  body.admin-route .main-content {
    margin-left: 0 !important;
  }

  body.admin-route .admin-sidebar-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1030;
    display: block;
    pointer-events: none;
    background: rgba(16, 17, 20, 0.42);
    opacity: 0;
    transition: opacity 180ms ease;
  }

  body.admin-route .admin-sidebar-backdrop.is-open {
    pointer-events: auto;
    opacity: 1;
  }
}

@media (max-width: 767.98px) {
  body.admin-route .iq-navbar .navbar-inner {
    align-items: flex-start;
  }

  body.admin-route .admin-top-actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-left: 0 !important;
  }

  body.admin-route .admin-top-actions .btn,
  body.admin-route .admin-top-actions a.btn {
    width: 100%;
    min-width: 0;
    justify-content: center;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 12px;
  }

  body.admin-route .iq-navbar-header.bg-primary {
    min-height: 166px;
    padding: 24px 0 66px;
  }

  body.admin-route .iq-navbar-header .flex-wrap {
    gap: 14px;
  }

  body.admin-route .content-inner.admin-content-inner {
    margin-top: -42px !important;
  }

  body.admin-route .card-header {
    align-items: stretch !important;
  }

  body.admin-route .card-header .js-admin-search {
    width: 100%;
  }

  body.admin-route .offcanvas.admin-editor {
    inset: 0;
    width: 100vw;
    border-left: 0;
  }

  body.admin-route .admin-editor-body {
    padding: 14px;
  }

  body.admin-route .admin-editor-body [class*="col-md-"],
  body.admin-route .admin-editor-body .col-12 {
    width: 100%;
  }

  body.admin-route .admin-editor-footer > .d-flex {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
  }

  body.admin-route .admin-editor-footer .btn {
    width: 100%;
    min-height: 44px;
  }
}

@media (max-width: 420px) {
  body.admin-route .admin-top-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.admin-route .admin-editor .offcanvas-header {
    padding: 14px;
  }

  body.admin-route .admin-editor-footer > .d-flex {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile app-grade admin experience */
.admin-mobile-dock {
  display: none;
}

@media (max-width: 767.98px) {
  body.admin-route {
    --admin-dock-height: 74px;
    background: #f6f7f8;
  }

  body.admin-route .page,
  body.admin-route .main-content {
    background: #f6f7f8;
  }

  body.admin-route .main-content {
    padding-bottom: calc(var(--admin-dock-height) + env(safe-area-inset-bottom));
  }

  body.admin-route .iq-navbar {
    border-bottom: 1px solid rgba(16, 17, 20, 0.07);
    box-shadow: 0 8px 22px rgba(16, 17, 20, 0.04);
  }

  body.admin-route .iq-navbar .navbar-inner {
    align-items: center;
    min-height: auto;
    padding: 10px 14px;
  }

  body.admin-route .iq-navbar .navbar-brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  body.admin-route .iq-navbar .logo-title {
    max-width: 190px;
    overflow: hidden;
    color: #15181d;
    font-size: 19px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.admin-route .iq-navbar .btn-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 12px;
  }

  body.admin-route .admin-top-actions {
    display: flex !important;
    flex-wrap: nowrap !important;
    width: 100%;
    margin-left: 0 !important;
    padding: 6px 0 2px;
    gap: 8px !important;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  body.admin-route .admin-top-actions::-webkit-scrollbar {
    display: none;
  }

  body.admin-route .admin-top-actions .btn,
  body.admin-route .admin-top-actions a.btn {
    width: auto;
    min-width: max-content;
    min-height: 38px;
    flex: 0 0 auto;
    justify-content: center;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
  }

  body.admin-route .iq-navbar-header.bg-primary {
    min-height: auto;
    padding: 18px 0 52px;
    background: #171a20 !important;
  }

  body.admin-route .iq-navbar-header h1 {
    font-size: 28px;
    letter-spacing: 0;
  }

  body.admin-route .iq-navbar-header p {
    max-width: 280px;
    font-size: 13px;
    line-height: 1.35;
  }

  body.admin-route .iq-navbar-header .badge {
    display: none;
  }

  body.admin-route .content-inner.admin-content-inner {
    margin-top: -34px !important;
    padding-right: 14px;
    padding-left: 14px;
  }

  body.admin-route .card {
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(16, 17, 20, 0.05);
  }

  body.admin-route .card-header {
    padding: 20px 18px 14px;
  }

  body.admin-route .card-body {
    padding: 14px 18px 18px;
  }

  body.admin-route .card-title {
    font-size: 23px;
    line-height: 1.15;
  }

  body.admin-route .row.g-3 {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 12px;
  }

  body.admin-route .admin-content-card {
    display: block;
    padding: 10px;
    border-radius: 10px;
    box-shadow: none;
  }

  body.admin-route .admin-card-media,
  body.admin-route .admin-card-media img {
    min-height: 168px;
    border-radius: 8px;
  }

  body.admin-route .admin-card-body {
    padding: 12px 4px 2px;
  }

  body.admin-route .admin-card-body h3 {
    font-size: 20px;
    line-height: 1.18;
  }

  body.admin-route .admin-card-footer {
    padding: 12px 4px 2px;
  }

  body.admin-route .admin-mobile-dock {
    position: fixed;
    right: 10px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    left: 10px;
    z-index: 1020;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 4px;
    min-height: 62px;
    padding: 7px;
    border: 1px solid rgba(16, 17, 20, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 40px rgba(16, 17, 20, 0.16);
    backdrop-filter: blur(18px);
  }

  body.admin-route.admin-drawer-open .admin-mobile-dock {
    display: none;
  }

  body.admin-route .admin-mobile-dock-item {
    min-width: 0;
    min-height: 48px;
    display: grid;
    place-items: center;
    gap: 3px;
    padding: 5px 2px;
    border: 0;
    border-radius: 13px;
    background: transparent;
    color: #686f7a;
    cursor: pointer;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
  }

  body.admin-route .admin-mobile-dock-item i {
    font-size: 15px;
  }

  body.admin-route .admin-mobile-dock-item span {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.admin-route .admin-mobile-dock-item.is-active {
    background: #111318;
    color: #ffffff;
  }

  body.admin-route .offcanvas.admin-editor {
    inset: 0;
    width: 100vw;
    height: 100dvh;
    max-height: none;
    display: block !important;
    overflow-x: hidden;
    overflow-y: auto !important;
    overscroll-behavior-y: contain;
    touch-action: pan-y;
    border-left: 0;
    box-shadow: none;
    -webkit-overflow-scrolling: touch;
  }

  body.admin-route .admin-editor .offcanvas-header {
    position: sticky;
    top: 0;
    z-index: 3;
    min-height: 62px;
    padding: 15px 14px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
  }

  body.admin-route .admin-editor-form {
    min-height: 0;
    display: block;
  }

  body.admin-route .admin-editor-body {
    display: block;
    min-height: auto;
    padding: 16px 14px 14px;
    overflow: visible !important;
    touch-action: pan-y;
  }

  body.admin-route .admin-editor-body .row {
    display: block;
  }

  body.admin-route .admin-editor-body [class*="col-"],
  body.admin-route .admin-editor-body [class*="col-md-"] {
    width: 100%;
    max-width: 100%;
    padding-right: 0;
    padding-left: 0;
  }

  body.admin-route .admin-editor-body .form-group {
    margin-bottom: 18px;
  }

  body.admin-route .admin-editor-body .form-control {
    min-height: 43px;
    border-radius: 9px;
  }

  body.admin-route .admin-editor-body textarea.form-control {
    min-height: 146px;
  }

  body.admin-route .admin-editor-footer {
    position: sticky;
    bottom: 0;
    z-index: 4;
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom)) !important;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -12px 28px rgba(16, 17, 20, 0.08);
  }

  body.admin-route .admin-editor-footer > .d-flex {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 8px !important;
  }

  body.admin-route .admin-editor-footer .btn {
    width: 100%;
    min-height: 44px;
    border-radius: 9px;
    font-weight: 700;
  }
}

@media (max-width: 380px) {
  body.admin-route .admin-mobile-dock {
    right: 6px;
    left: 6px;
    gap: 2px;
    padding: 6px;
  }

  body.admin-route .admin-mobile-dock-item {
    font-size: 9px;
  }
}

body.admin-route .admin-item-media {
  width: 140px;
  height: 120px;
  object-fit: cover;
  background: #f3f5f7;
}

@media (max-width: 767.98px) {
  body.admin-route {
    --admin-dock-height: 66px;
  }

  body.admin-route .main-content {
    padding-bottom: calc(var(--admin-dock-height) + 18px + env(safe-area-inset-bottom));
  }

  body.admin-route .iq-navbar .navbar-inner {
    padding: 8px 14px 9px;
  }

  body.admin-route .admin-top-actions {
    padding-top: 5px;
  }

  body.admin-route .admin-top-actions .btn,
  body.admin-route .admin-top-actions a.btn {
    min-height: 36px;
    padding: 7px 12px;
  }

  body.admin-route .iq-navbar-header.bg-primary {
    padding: 14px 0 42px !important;
  }

  body.admin-route .iq-navbar-header h1 {
    font-size: 26px;
  }

  body.admin-route .content-inner.admin-content-inner {
    margin-top: -30px !important;
    padding-bottom: calc(var(--admin-dock-height) + 34px + env(safe-area-inset-bottom));
  }

  body.admin-route .admin-content-inner > .card > .card-header {
    gap: 12px !important;
    padding: 18px 18px 12px;
  }

  body.admin-route .admin-content-inner > .card > .card-header > .d-flex {
    width: 100%;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px !important;
    align-items: center;
  }

  body.admin-route .admin-content-inner > .card > .card-header .js-admin-search {
    min-width: 0;
    height: 42px;
  }

  body.admin-route .admin-content-inner > .card > .card-header .btn-primary {
    min-width: 86px;
    height: 42px;
    border-radius: 8px;
  }

  body.admin-route .admin-item-card {
    border-radius: 10px;
    box-shadow: none;
  }

  body.admin-route .admin-item-card .card-body {
    padding: 12px;
  }

  body.admin-route .admin-item-main {
    display: grid !important;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px !important;
  }

  body.admin-route .admin-item-media {
    width: 88px;
    height: 88px;
    border-radius: 9px !important;
  }

  body.admin-route .admin-item-card h5 {
    margin-bottom: 7px !important;
    font-size: 19px;
    line-height: 1.16;
  }

  body.admin-route .admin-item-card p.text-muted {
    margin-bottom: 10px !important;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  body.admin-route .admin-item-card .badge {
    white-space: nowrap;
  }

  body.admin-route .admin-item-card .text-muted.small {
    line-height: 1.25;
  }

  body.admin-route .admin-item-controls {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px !important;
    padding-top: 12px !important;
    margin-top: 12px !important;
  }

  body.admin-route .admin-item-controls .ms-auto {
    margin-left: 0 !important;
  }

  body.admin-route .admin-item-share {
    padding-top: 10px !important;
  }

  body.admin-route .admin-item-share > .d-flex {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px !important;
  }

  body.admin-route .admin-item-share .btn {
    min-width: 0;
    min-height: 38px;
    padding: 7px 4px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
  }

  body.admin-route .admin-item-share .btn i {
    margin-right: 4px;
  }

  body.admin-route .admin-mobile-dock {
    right: 8px;
    bottom: calc(7px + env(safe-area-inset-bottom));
    left: 8px;
    min-height: 58px;
    padding: 6px;
    border-radius: 16px;
  }

  body.admin-route .admin-mobile-dock-item {
    min-height: 44px;
    border-radius: 12px;
    font-size: 9.5px;
  }

  body.admin-route .admin-mobile-dock-item i {
    font-size: 14px;
  }
}

@media (max-width: 380px) {
  body.admin-route .admin-item-main {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  body.admin-route .admin-item-media {
    width: 76px;
    height: 76px;
  }

  body.admin-route .admin-item-share .btn {
    font-size: 11px;
  }
}

body.admin-route .btn-soft-primary,
body.admin-route .btn.btn-soft-primary,
body.admin-route .bg-soft-primary {
  --bs-btn-bg: #eef1f4 !important;
  --bs-btn-color: #111318 !important;
  --bs-btn-border-color: #d8dde5 !important;
  --bs-btn-hover-bg: #e3e7ec !important;
  --bs-btn-hover-color: #111318 !important;
  --bs-btn-hover-border-color: #cfd6df !important;
  background: #eef1f4 !important;
  background-color: #eef1f4 !important;
  color: #111318 !important;
  border-color: #d8dde5 !important;
}

body.admin-route .btn-soft-primary:hover,
body.admin-route .btn.btn-soft-primary:hover,
body.admin-route .btn-soft-primary:focus,
body.admin-route .btn.btn-soft-primary:focus {
  background: #e3e7ec !important;
  background-color: #e3e7ec !important;
  color: #111318 !important;
  border-color: #cfd6df !important;
}

body.admin-route .btn-soft-primary i,
body.admin-route .btn.btn-soft-primary i {
  color: currentColor !important;
}

body.admin-route .btn-primary,
body.admin-route .btn.btn-primary,
body.admin-route button.btn.btn-primary,
body.admin-route a.btn.btn-primary {
  --bs-btn-bg: #111318 !important;
  --bs-btn-color: #ffffff !important;
  --bs-btn-border-color: #111318 !important;
  --bs-btn-hover-bg: #292d33 !important;
  --bs-btn-hover-color: #ffffff !important;
  --bs-btn-hover-border-color: #292d33 !important;
  background: #111318 !important;
  background-color: #111318 !important;
  color: #ffffff !important;
  border-color: #111318 !important;
}

body.admin-route .btn-primary:hover,
body.admin-route .btn.btn-primary:hover,
body.admin-route button.btn.btn-primary:hover,
body.admin-route a.btn.btn-primary:hover,
body.admin-route .btn-primary:focus,
body.admin-route .btn.btn-primary:focus,
body.admin-route button.btn.btn-primary:focus,
body.admin-route a.btn.btn-primary:focus {
  background: #292d33 !important;
  background-color: #292d33 !important;
  color: #ffffff !important;
  border-color: #292d33 !important;
}
