/*cart-thanks-fix 2026-08-26 — wysrodkowanie potwierdzenia zamowienia i pustego koszyka*/
.cart-empty{grid-column:1 / -1;margin:0 auto;max-width:640px;text-align:center}
.cart-empty .btn{display:inline-flex}


:root {
  --ink: #0a0a0b;
  --ink-soft: #141416;
  --paper: #f3f0ea;
  --paper-light: #faf8f4;
  --red: #e92032;
  --red-dark: #bc1120;
  --gold: #c9a45a;
  --muted: #6d6963;
  --line: rgba(10, 10, 11, 0.15);
  --header-show: 0;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-geist), Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
::selection {
  color: white;
  background: var(--red);
}
.page-width {
  width: min(1380px, calc(100% - 64px));
  margin-inline: auto;
}

/* Logo */
.logo-lockup {
  display: inline-block;
  color: currentColor;
  line-height: 0;
}
.logo-art {
  display: block;
  width: 270px;
  aspect-ratio: 4103 / 2032;
  background: #fff;
  -webkit-mask: url("/images/logo-slad-studio.png") center / contain no-repeat;
  mask: url("/images/logo-slad-studio.png") center / contain no-repeat;
}
.logo-art-red {
  background: var(--red);
}
.logo-art-gold {
  background: linear-gradient(100deg, #f2d886 4%, #a87931 58%, #e1c36e 100%);
}
.logo-art-black {
  background: var(--ink);
}
.logo-lockup.compact .logo-art {
  width: 104px;
}

/* Scroll intro */
.intro {
  --logo-scale: 0.86;
  --intro-fade: 1;
  --gold-logo: 1;
  --red-logo: 0;
  --white-logo: 0;
  position: relative;
  z-index: 250;
  height: 235vh;
  background: transparent;
}
.intro-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  pointer-events: none;
  background: #080809;
  opacity: var(--intro-fade);
}
.intro-sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 48%,
    rgba(201, 164, 90, 0.09),
    transparent 38%
  );
}
.intro-sticky::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
.intro-logo {
  position: absolute;
  z-index: 2;
  transform: scale(var(--logo-scale));
  transform-origin: center;
  will-change: transform, opacity;
}
.intro-logo .logo-art {
  width: clamp(300px, 48vw, 760px);
}
.intro-logo-red {
  color: var(--red);
  opacity: var(--red-logo);
}
.intro-logo-gold {
  opacity: var(--gold-logo);
}
.intro-logo-white {
  opacity: var(--white-logo);
}
.intro-scroll {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 40px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #7f7e82;
  font:
    600 9px var(--font-mono),
    monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateX(-50%);
  opacity: calc(1 - var(--white-logo));
}
.intro-scroll span {
  display: block;
  width: 35px;
  height: 1px;
  background: var(--red);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 300;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  padding: 0 max(32px, calc((100vw - 1380px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
  color: white;
  background: rgba(9, 9, 10, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(18px);
  opacity: var(--header-show);
  transition: opacity 0.2s ease;
}
.header-logo {
  width: max-content;
  color: white;
  text-decoration: none;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 17px;
}
.site-header nav a {
  color: #b7b6b8;
  text-decoration: none;
  font-size: 11px;
  font-weight: 620;
  white-space: nowrap;
  transition: color 0.2s;
}
.site-header nav a:hover {
  color: white;
}
.header-contact {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: white;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}
.header-contact span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--red);
  font-size: 16px;
}
.header-contact i {
  font-style: normal;
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.header-contact:hover i {
  transform: translate(4px, -4px);
}
.mobile-nav {
  display: none;
}

main {
  position: relative;
  z-index: 1;
  margin-top: -100vh;
}

/* Shared type */
.section-label {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #827e77;
  font:
    650 9px var(--font-mono),
    monospace;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.section-label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--red);
}
.section-label span {
  color: var(--red);
}
.section-label.light {
  color: #aaa8aa;
}
.section-label.light span {
  color: white;
}
.section-label.light::before {
  background: white;
}
h1,
h2,
h3,
p {
  text-wrap: pretty;
}
.btn {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition:
    transform 0.2s,
    background 0.2s,
    border-color 0.2s;
}
.btn:hover {
  transform: translateY(-3px);
}
.btn span {
  display: inline-block;
  font-size: 16px;
  transition: transform 0.25s ease;
}
.btn:hover span {
  transform: translate(3px, -3px);
}
.btn-red {
  color: white;
  background: var(--red);
  box-shadow: 0 14px 38px rgba(233, 32, 50, 0.2);
}
.btn-red:hover {
  background: var(--red-dark);
}
.btn-line {
  color: white;
  border-color: rgba(255, 255, 255, 0.32);
}
.btn-line:hover {
  border-color: white;
}

/* Hero */
.hero {
  position: relative;
  min-height: 780px;
  height: min(940px, 100vh);
  overflow: hidden;
  color: white;
  background: var(--ink);
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.022);
  transition:
    opacity 2.35s cubic-bezier(0.45, 0, 0.2, 1),
    transform 9s cubic-bezier(0.2, 0.6, 0.2, 1);
  will-change: opacity, transform;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.hero-slide-framed {
  inset: 5%;
  width: 90%;
  height: 90%;
  border-radius: 4px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}
.hero-slide-framed.is-active {
  transform: scale(0.99);
}
.hero-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(6, 6, 7, 0.86) 0%,
      rgba(6, 6, 7, 0.68) 32%,
      rgba(6, 6, 7, 0.13) 66%,
      rgba(6, 6, 7, 0.16) 100%
    ),
    linear-gradient(0deg, rgba(6, 6, 7, 0.45), transparent 38%);
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-top: 128px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.kicker {
  margin: 0 0 25px;
  color: var(--red);
  font:
    650 9px var(--font-mono),
    monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(64px, 7.2vw, 116px);
  font-weight: 780;
  line-height: 0.91;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.hero h1 em {
  color: transparent;
  -webkit-text-stroke: 1.35px rgba(255, 255, 255, 0.9);
  font-style: normal;
  letter-spacing: -0.01em;
}
.hero-dot {
  display: inline-block;
  margin-left: 0.025em;
  font-size: 0.5em;
  transform: translateY(-0.03em);
}
.hero-slad {
  display: inline-flex;
  gap: 0.055em;
  white-space: nowrap;
  letter-spacing: 0;
}
.hero-slad > span {
  display: inline-block;
}
.hero-content > p:not(.kicker) {
  max-width: 620px;
  margin: 30px 0 34px;
  color: #aaa9ad;
  font-size: 17px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-meta {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 28px;
  display: flex;
  gap: 34px;
  transform: translateX(-50%);
}
.hero-meta span {
  padding-left: 13px;
  color: #89878b;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  font:
    600 9px var(--font-mono),
    monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-slider-controls {
  position: absolute;
  z-index: 3;
  right: max(32px, calc((100vw - 1380px) / 2));
  bottom: 23px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.hero-slider-controls p {
  margin: 0;
  color: #a3a1a5;
  font:
    600 8px var(--font-mono),
    monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-slider-controls p span {
  color: white;
}
.hero-slider-controls > div {
  max-width: min(44vw, 620px);
  display: flex;
  gap: 7px;
  overflow: hidden;
}
.hero-slider-controls button {
  flex: 0 1 38px;
  min-width: 20px;
  height: 24px;
  padding: 11px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.hero-slider-controls button::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.28);
  transition:
    background 0.25s,
    transform 0.25s;
  transform-origin: left;
}
.hero-slider-controls button:hover::before,
.hero-slider-controls button:focus-visible::before {
  background: white;
}
.hero-slider-controls button:focus-visible {
  outline: 1px solid white;
  outline-offset: 2px;
}
.hero-slider-controls button.is-active::before {
  background: var(--red);
  transform: scaleX(1);
  animation: hero-progress 8.2s linear;
}
@keyframes hero-progress {
  from {
    transform: scaleX(0.08);
  }
  to {
    transform: scaleX(1);
  }
}

.marquee {
  overflow: hidden;
  color: white;
  background: var(--red);
}
.marquee div {
  width: max-content;
  padding: 13px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  animation: marquee 28s linear infinite;
}
.marquee span {
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.13em;
}
.marquee i {
  color: #7e0814;
  font-style: normal;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* Statement */
.statement {
  padding-block: 138px;
  display: grid;
  grid-template-columns: 0.42fr 1.58fr;
  gap: 70px;
  align-items: start;
}
.statement > div {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 70px;
  align-items: end;
}
.statement h2,
.print-intro h2,
.texture-copy h2,
.services-head h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(49px, 5.8vw, 88px);
  font-weight: 740;
  line-height: 0.92;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}
.statement h2 em,
.print-intro h2 em,
.texture-copy h2 em,
.services-head h2 em,
.contact-copy h2 em {
  color: var(--red);
  font-style: normal;
}
.statement > div > p {
  max-width: 510px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* Full bleed image */
.photo-story {
  position: relative;
  height: min(900px, 88vh);
  min-height: 680px;
  overflow: hidden;
  color: white;
  background: #0b0b0c;
}
.photo-story > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 7, 8, 0.8),
    rgba(7, 7, 8, 0.22) 58%,
    rgba(7, 7, 8, 0.06)
  );
}
.photo-copy {
  position: absolute;
  z-index: 2;
  left: max(32px, calc((100vw - 1380px) / 2));
  top: 50%;
  max-width: 640px;
  transform: translateY(-50%);
}
.photo-copy h2 {
  margin: 24px 0 20px;
  font-size: clamp(62px, 7vw, 110px);
  font-weight: 750;
  line-height: 0.86;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}
.photo-copy > p:not(.section-label) {
  max-width: 520px;
  margin: 0 0 25px;
  color: #b2b0b2;
  font-size: 16px;
  line-height: 1.6;
}
.photo-copy > a {
  display: inline-flex;
  gap: 18px;
  color: white;
  text-decoration: none;
  border-bottom: 1px solid var(--red);
  padding-bottom: 5px;
  font-size: 12px;
  font-weight: 700;
}
.photo-story-labels {
  padding: clamp(22px, 3vw, 48px);
}
.photo-story-labels > img {
  border-radius: 4px;
  box-shadow: 0 24px 75px rgba(0, 0, 0, 0.38);
}

/* Print types */
.print-section {
  padding-top: 138px;
  background: var(--paper-light);
}
.print-intro {
  padding-bottom: 70px;
  display: grid;
  grid-template-columns: 0.42fr 1.58fr;
  gap: 70px;
}
.print-intro > div {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 70px;
  align-items: end;
}
.print-intro > div > p {
  max-width: 510px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.print-list {
  border-top: 1px solid var(--line);
}
.print-list article {
  min-height: 190px;
  padding: 32px max(32px, calc((100vw - 1380px) / 2));
  display: grid;
  grid-template-columns: 70px 0.9fr 1.1fr 52px;
  gap: 30px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition:
    color 0.25s,
    background 0.25s;
}
.print-list article:hover {
  color: white;
  background: var(--ink);
}
.print-number {
  color: var(--red);
  font:
    650 9px var(--font-mono),
    monospace;
}
.print-name small {
  color: #817d77;
  font:
    650 8px var(--font-mono),
    monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.print-name h3 {
  margin: 9px 0 0;
  font-size: 27px;
  font-weight: 690;
  letter-spacing: -0.04em;
}
.print-list article > p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  transition: color 0.25s;
}
.print-list article:hover > p {
  color: #99989c;
}
.print-list article > a {
  justify-self: end;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--red);
  text-decoration: none;
  font-size: 15px;
  transition:
    border 0.25s,
    background 0.25s,
    color 0.25s;
}
.print-list article:hover > a {
  color: white;
  background: var(--red);
  border-color: var(--red);
}
.print-list article > a {
  overflow: hidden;
}
.print-list article > a span {
  display: block;
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.print-list article > a:hover span {
  transform: translate(5px, -5px);
}

/* Texture */
.texture-story {
  min-height: 820px;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  background: var(--paper);
}
.texture-image {
  min-height: 720px;
  padding: clamp(28px, 3.5vw, 58px);
  overflow: hidden;
  background: #09090a;
}
.texture-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
}
.texture-copy {
  padding: 110px max(32px, calc((100vw - 1380px) / 2)) 100px
    clamp(55px, 6vw, 105px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.texture-copy h2 {
  margin-top: 28px;
}
.texture-copy > p:not(.section-label) {
  max-width: 520px;
  margin: 28px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.texture-copy ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.texture-copy li {
  padding: 15px 0;
  display: flex;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid var(--line);
  color: #4f4c47;
  font-size: 12px;
}
.texture-copy li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

/* Services */
.services {
  padding-block: 138px;
}
.services-head {
  margin: 30px 0 60px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 70px;
  align-items: end;
}
.services-head > p {
  max-width: 430px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.service-list {
  border-top: 1px solid var(--line);
}
.service-list a {
  min-height: 112px;
  display: grid;
  grid-template-columns: 70px 0.8fr 1.2fr 50px;
  gap: 30px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition:
    padding 0.25s,
    color 0.25s;
}
.service-list a:hover {
  padding-inline: 16px;
  color: var(--red);
}
.service-list a > span {
  color: var(--red);
  font:
    650 9px var(--font-mono),
    monospace;
}
.service-list h3 {
  margin: 0;
  font-size: 25px;
  font-weight: 690;
  letter-spacing: -0.04em;
}
.service-list p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.service-list i {
  justify-self: end;
  font-size: 17px;
  font-style: normal;
}
.service-list i {
  transition: transform 0.25s ease;
}
.service-list a:hover i {
  transform: translate(4px, -4px);
}

/* Ordering paths */
.ordering-section {
  padding-block: 0 138px;
  color: white;
  background: var(--ink);
  scroll-margin-top: 76px;
}
.ordering-shell {
  padding-top: 0;
}
.ordering-portals {
  min-height: 92px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.ordering-portals a {
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #d3d1d3;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  text-decoration: none;
  font-size: 12px;
  font-weight: 680;
  transition:
    color 0.25s,
    background 0.25s,
    padding 0.25s;
}
.ordering-portals a:first-child {
  padding-left: 0;
}
.ordering-portals a:last-child {
  padding-right: 0;
  border-right: 0;
}
.ordering-portals i {
  color: var(--red);
  font-size: 17px;
  font-style: normal;
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.ordering-portals a:hover {
  padding-left: 38px;
  color: white;
  background: rgba(255, 255, 255, 0.035);
}
.ordering-portals a:hover i {
  transform: translate(4px, -4px);
}
.ordering-manifesto {
  margin: 0;
  padding: 32px 0 28px;
  color: #f1eff1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: clamp(19px, 2.35vw, 36px);
  font-weight: 730;
  line-height: 1;
  letter-spacing: -0.04em;
  text-align: justify;
  text-align-last: justify;
  text-transform: uppercase;
  white-space: nowrap;
}
.ordering-manifesto i {
  color: var(--red);
  font-style: normal;
}
.ordering-intro {
  padding: 102px 0 78px;
  display: grid;
  grid-template-columns: 0.42fr 1.58fr;
  gap: 70px;
  align-items: start;
}
.ordering-intro > div {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 70px;
  align-items: end;
}
.ordering-intro h2 {
  margin: 0;
  font-size: clamp(58px, 6.8vw, 102px);
  font-weight: 750;
  line-height: 0.88;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}
.ordering-intro h2 em {
  color: var(--red);
  font-style: normal;
}
.ordering-intro > div > p {
  max-width: 510px;
  margin: 0 0 6px;
  color: #98969a;
  font-size: 15px;
  line-height: 1.7;
}
.ordering-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.ordering-way {
  min-height: 560px;
  padding: 38px 38px 34px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  transition:
    background 0.3s,
    transform 0.3s;
}
.ordering-way:first-child {
  padding-left: 0;
}
.ordering-way:last-child {
  padding-right: 0;
  border-right: 0;
}
.ordering-way:hover {
  background: rgba(255, 255, 255, 0.025);
}
.ordering-way-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.ordering-way-top span {
  color: var(--red);
  font:
    700 10px var(--font-mono),
    monospace;
  letter-spacing: 0.08em;
}
.ordering-way-top small {
  color: #6f6d72;
  font:
    650 8px var(--font-mono),
    monospace;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.ordering-way h3 {
  max-width: 350px;
  margin: 72px 0 14px;
  font-size: clamp(31px, 3vw, 48px);
  font-weight: 720;
  line-height: 0.94;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}
.ordering-way > p {
  min-height: 48px;
  max-width: 330px;
  margin: 0;
  color: #9b999d;
  font-size: 13px;
  line-height: 1.6;
}
.ordering-way ul {
  margin: 36px 0 42px;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}
.ordering-way li {
  position: relative;
  padding-left: 17px;
  color: #c0bec1;
  font-size: 12px;
  line-height: 1.55;
}
.ordering-way li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}
.ordering-way > a {
  margin-top: auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  text-decoration: none;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}
.ordering-way > a i {
  color: var(--red);
  font-size: 17px;
  font-style: normal;
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.ordering-way > a:hover i {
  transform: translate(5px, -5px);
}
.ai-creator {
  position: relative;
  margin-top: 84px;
  padding: clamp(42px, 5.5vw, 82px);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(45px, 7vw, 110px);
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  background:
    radial-gradient(
      circle at 84% 50%,
      rgba(233, 32, 50, 0.18),
      transparent 35%
    ),
    linear-gradient(135deg, #111113, #080809);
}
.ai-creator::before {
  content: "AI";
  position: absolute;
  right: -1.5vw;
  bottom: -5vw;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.045);
  font-size: clamp(180px, 23vw, 350px);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.12em;
  pointer-events: none;
}
.ai-creator-copy {
  position: relative;
  z-index: 1;
}
.ai-creator-copy h3 {
  margin: 34px 0 24px;
  font-size: clamp(48px, 5.8vw, 84px);
  font-weight: 740;
  line-height: 0.9;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}
.ai-creator-copy h3 em {
  color: var(--red);
  font-style: normal;
}
.ai-creator-copy > p:not(.section-label) {
  max-width: 600px;
  margin: 0 0 32px;
  color: #a6a4a8;
  font-size: 15px;
  line-height: 1.7;
}
.ai-creator-visual {
  position: relative;
  z-index: 1;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.ai-prompt {
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #0b0b0c;
}
.ai-prompt small {
  color: #77757a;
  font:
    650 8px var(--font-mono),
    monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ai-prompt p {
  min-height: 72px;
  margin: 16px 0 22px;
  color: #e0dee1;
  font-size: 16px;
  line-height: 1.5;
}
.ai-prompt > span {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  background: var(--red);
  font-size: 11px;
  font-weight: 730;
  text-transform: uppercase;
}
.ai-prompt > span i {
  font-size: 17px;
  font-style: normal;
}
.ai-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.ai-steps span {
  padding: 17px 0;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 9px;
  color: #9a989c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  font:
    620 8px var(--font-mono),
    monospace;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.ai-steps span:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.11);
}
.ai-steps span:nth-child(even) {
  padding-left: 17px;
}
.ai-steps b {
  color: var(--red);
}

/* Contact */
.contact-section {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  color: white;
  background: var(--ink);
}
.contact-copy {
  padding: 118px clamp(50px, 8vw, 150px) 110px
    max(32px, calc((100vw - 1380px) / 2));
  background: linear-gradient(145deg, var(--red), #af0e1d);
}
.contact-copy h2 {
  margin: 30px 0 28px;
}
.contact-copy h2 em {
  color: var(--ink);
}
.contact-copy > p:not(.section-label) {
  max-width: 600px;
  margin: 0 0 36px;
  color: #ffd2d7;
  font-size: 16px;
  line-height: 1.65;
}
.contact-copy .btn-red {
  color: var(--ink);
  background: white;
  box-shadow: none;
}
.contact-copy .btn-red:hover {
  background: var(--paper);
}
.contact-side {
  padding: 80px max(32px, calc((100vw - 1380px) / 2)) 80px
    clamp(48px, 6vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  background: radial-gradient(circle at 50% 40%, #261014, #0a0a0b 60%);
}
.contact-side .logo-art {
  width: 190px;
}
.contact-side > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #7c7b80;
  font:
    550 10px var(--font-mono),
    monospace;
  letter-spacing: 0.06em;
  line-height: 1.55;
  text-transform: uppercase;
}
.contact-addresses strong {
  display: block;
  margin-bottom: 2px;
  color: #d1cfd1;
  font-weight: 650;
}
.contact-side .logo-art {
  width: 134px;
}
.contact-side > .contact-brand-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}
.contact-stamp {
  width: 126px;
  height: 126px;
  flex: 0 0 126px;
  padding: 21px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  color: #c7c4c6;
  border: 1px solid rgba(233, 32, 50, 0.5);
  border-radius: 50%;
  font:
    650 8px var(--font-mono),
    monospace;
  letter-spacing: 0.12em;
}
.contact-stamp i {
  color: var(--red);
  font-size: 24px;
  font-style: normal;
  transition: transform 0.3s ease;
}
.contact-stamp:hover i {
  transform: translate(4px, -4px);
}
.contact-process {
  width: min(250px, 52%);
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.contact-process span {
  padding: 10px 0;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 9px;
  color: #b6b3b6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font:
    620 9px var(--font-mono),
    monospace;
  letter-spacing: 0.05em;
}
.contact-process b {
  color: var(--red);
  font-weight: 700;
}
.contact-tagline {
  width: 100%;
  margin-top: 10px;
  padding-top: 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #f1eff0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: clamp(10px, 0.85vw, 13px);
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.contact-tagline i {
  color: var(--red);
  font-style: normal;
}
.contact-side > .contact-access {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font: inherit;
  letter-spacing: normal;
  text-transform: none;
}
.contact-access a {
  min-height: 78px;
  padding: 14px 15px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: 4px 10px;
  color: white;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  text-decoration: none;
  transition: background 0.25s;
}
.contact-access a:last-child {
  border-right: 0;
}
.contact-access small {
  grid-column: 1 / -1;
  color: #706e73;
  font:
    620 7px var(--font-mono),
    monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-access strong {
  color: #dddadd;
  font-size: 12px;
  font-weight: 680;
}
.contact-access i {
  color: var(--red);
  font-size: 14px;
  font-style: normal;
  transition: transform 0.25s;
}
.contact-access a:hover {
  background: rgba(233, 32, 50, 0.07);
}
.contact-access a:hover i {
  transform: translate(3px, -3px);
}
.contact-side > .contact-links {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  color: white;
  font: inherit;
  letter-spacing: normal;
  text-transform: none;
}
.contact-link {
  position: relative;
  min-height: 102px;
  padding: 16px 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 14px;
  align-items: center;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 3px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.035);
  transition:
    border-color 0.25s,
    background 0.25s,
    transform 0.25s;
}
.contact-link::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255, 255, 255, 0.08),
    transparent 70%
  );
  transform: translateX(-70%);
  transition: transform 0.5s ease;
}
.contact-link:hover::before {
  transform: translateX(55%);
}
.contact-link:hover {
  border-color: rgba(233, 32, 50, 0.72);
  background: rgba(233, 32, 50, 0.065);
  transform: translateY(-3px);
}
.contact-link-map {
  min-height: 116px;
  background-color: #101012;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 14% 58%, rgba(233, 32, 50, 0.17), transparent 24%);
  background-size:
    24px 24px,
    24px 24px,
    auto;
}
.contact-link > span:nth-child(2) {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-link small {
  color: #77757a;
  font:
    620 7px var(--font-mono),
    monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.contact-link strong {
  color: #f4f2f4;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.contact-link em {
  color: #98969a;
  font:
    550 8px var(--font-mono),
    monospace;
  font-style: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.contact-link > b {
  align-self: start;
  color: var(--red);
  font-size: 17px;
  font-weight: 500;
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.contact-link:hover > b {
  transform: translate(4px, -4px);
}
.contact-link-icon {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: white;
  border: 1px solid rgba(233, 32, 50, 0.55);
  border-radius: 50%;
  background: rgba(233, 32, 50, 0.08);
}
.map-pin::before {
  content: "";
  width: 15px;
  height: 15px;
  border: 2px solid var(--red);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}
.map-pin::after {
  content: "";
  position: absolute;
  top: 17px;
  left: 19px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
}
.social-f {
  font:
    760 23px Arial,
    sans-serif;
  text-transform: lowercase;
}
.social-ig i {
  width: 19px;
  height: 19px;
  border: 2px solid white;
  border-radius: 6px;
}
.social-ig i::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  width: 8px;
  height: 8px;
  border: 2px solid white;
  border-radius: 50%;
}
.social-ig i::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 11px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--red);
}
.social-tt {
  font:
    760 22px Arial,
    sans-serif;
  text-shadow:
    -2px 0 var(--red),
    2px 0 #72edf2;
}
.opening-hours {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 18px;
}
.opening-hours > strong {
  grid-column: 1 / -1;
}
.opening-hours b {
  display: contents;
  font-weight: 550;
}
.opening-hours b i {
  color: #c9c6ca;
  font-style: normal;
  text-align: right;
}

/* Animated cursor */
.custom-cursor {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  will-change: transform;
}
.custom-cursor.is-visible {
  opacity: 1;
}
.custom-cursor i {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  box-shadow: 0 0 14px rgba(233, 32, 50, 0.7);
  transition:
    width 0.2s,
    height 0.2s;
}
.cursor-ring {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(233, 32, 50, 0.75);
  animation: cursor-pulse 1.8s ease-out infinite;
}
.cursor-ring-two {
  animation-delay: 0.62s;
}
.custom-cursor.is-hover .cursor-dot {
  width: 10px;
  height: 10px;
}
.custom-cursor.is-hover .cursor-ring {
  border-color: var(--red);
  animation-duration: 1.15s;
}
@keyframes cursor-pulse {
  0% {
    width: 12px;
    height: 12px;
    opacity: 0.95;
  }
  100% {
    width: 44px;
    height: 44px;
    opacity: 0;
  }
}
@media (pointer: fine) {
  body.has-custom-cursor,
  body.has-custom-cursor a,
  body.has-custom-cursor button,
  body.has-custom-cursor summary {
    cursor: none;
  }
}

footer {
  min-height: 150px;
  padding: 45px max(32px, calc((100vw - 1380px) / 2));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 48px;
  color: white;
  background: #070708;
  border-top: 1px solid #242427;
}
footer > a {
  width: max-content;
  color: white;
  text-decoration: none;
}
footer .logo-art {
  width: 78px !important;
}
footer nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 24px;
}
footer nav a {
  color: #89888d;
  text-decoration: none;
  font-size: 10px;
}
footer nav a:hover {
  color: white;
}
footer p {
  justify-self: end;
  margin: 0;
  color: #626166;
  font:
    550 9px var(--font-mono),
    monospace;
}

/* Shop, business, agency and projects pages */
.portal-main {
  margin-top: 0;
  color: var(--ink);
  background: var(--paper);
}
.portal-header {
  position: fixed;
  z-index: 400;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  padding: 0 max(32px, calc((100vw - 1380px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
  color: white;
  background: rgba(7, 7, 8, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}
.portal-logo {
  width: max-content;
  display: inline-flex;
  align-items: center;
  color: white;
  text-decoration: none;
}
.portal-logo-art {
  display: block;
  width: 104px;
  aspect-ratio: 4103 / 2032;
  background: white;
  -webkit-mask: url("/images/logo-slad-studio.png") center / contain no-repeat;
  mask: url("/images/logo-slad-studio.png") center / contain no-repeat;
}
.portal-header nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.portal-header nav a {
  color: #aaa8ac;
  text-decoration: none;
  font-size: 10px;
  font-weight: 650;
  white-space: nowrap;
  transition: color 0.2s;
}
.portal-header nav a:hover {
  color: white;
}
.portal-header-tools {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 16px;
}
.portal-header-tools > a {
  color: #aaa8ac;
  text-decoration: none;
  font-size: 10px;
  font-weight: 680;
  white-space: nowrap;
  transition: color 0.2s;
}
.portal-header-tools > a:hover {
  color: white;
}
.portal-header-tools .portal-header-cart {
  min-height: 38px;
  padding-left: 15px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}
.portal-header-cart span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  font-size: 14px;
  transition: transform 0.25s;
}
.portal-header-cart:hover span {
  transform: translate(3px, -3px);
}
.portal-mobile-nav {
  display: none;
}
.portal-hero {
  position: relative;
  min-height: 760px;
  height: min(900px, 100vh);
  overflow: hidden;
  color: white;
  background: var(--ink);
}
.portal-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portal-hero-shop > img,
.portal-hero-projects > img {
  object-position: center;
}
.portal-hero-business > img,
.portal-hero-agency > img {
  object-position: 62% center;
}
.portal-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 5, 6, 0.92) 0%,
      rgba(5, 5, 6, 0.77) 35%,
      rgba(5, 5, 6, 0.12) 72%
    ),
    linear-gradient(0deg, rgba(5, 5, 6, 0.57), transparent 42%);
}
.portal-hero-copy {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-top: 130px;
  padding-bottom: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.portal-eyebrow {
  margin: 0 0 26px;
  color: #aaa7aa;
  font:
    650 9px var(--font-mono),
    monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.portal-eyebrow span {
  margin-right: 12px;
  color: var(--red);
}
.portal-hero h1 {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(64px, 7.1vw, 112px);
  font-weight: 770;
  line-height: 0.88;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}
.portal-hero h1 em {
  color: transparent;
  -webkit-text-stroke: 1.25px rgba(255, 255, 255, 0.92);
  font-style: normal;
}
.portal-hero-copy > p:not(.portal-eyebrow) {
  max-width: 650px;
  margin: 30px 0 34px;
  color: #aaa8ac;
  font-size: 16px;
  line-height: 1.65;
}
.portal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.portal-hero-meta {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 28px;
  display: flex;
  gap: 34px;
  transform: translateX(-50%);
}
.portal-hero-meta span {
  padding-left: 13px;
  color: #8e8c90;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  font:
    620 8px var(--font-mono),
    monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.portal-intro {
  padding-block: 132px;
  display: grid;
  grid-template-columns: 0.4fr 1.6fr;
  gap: 70px;
}
.portal-intro > div {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: end;
}
.portal-intro h2,
.portal-section-head h2,
.portal-split-copy h2,
.portal-feature h2,
.portal-final-cta h2 {
  margin: 0;
  font-size: clamp(50px, 5.7vw, 88px);
  font-weight: 745;
  line-height: 0.9;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}
.portal-intro h2 em,
.portal-section-head h2 em,
.portal-split-copy h2 em,
.portal-feature h2 em,
.portal-final-cta h2 em {
  color: var(--red);
  font-style: normal;
}
.portal-intro > div > p {
  max-width: 500px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.portal-steps {
  padding-bottom: 132px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.portal-steps article {
  min-height: 260px;
  padding: 28px 28px 34px;
  border-right: 1px solid var(--line);
}
.portal-steps article:first-child {
  padding-left: 0;
}
.portal-steps article:last-child {
  padding-right: 0;
  border-right: 0;
}
.portal-steps span,
.portal-number-grid article > span,
.portal-agency-grid article > span {
  color: var(--red);
  font:
    700 9px var(--font-mono),
    monospace;
}
.portal-steps h3 {
  margin: 78px 0 13px;
  font-size: 21px;
  letter-spacing: -0.04em;
}
.portal-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}
.portal-categories {
  padding: 126px 0 138px;
  background: var(--paper-light);
}
.portal-section-head {
  display: grid;
  grid-template-columns: 0.4fr 1.6fr;
  gap: 70px;
  align-items: start;
}
.portal-card-grid {
  margin-top: 65px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.portal-image-card {
  min-height: 560px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: white;
  background: #101012;
  text-decoration: none;
}
.portal-image-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.portal-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(5, 5, 6, 0.92),
    rgba(5, 5, 6, 0.08) 70%
  );
}
.portal-image-card:hover > img {
  transform: scale(1.035);
}
.portal-image-card > div {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 32px;
}
.portal-image-card small {
  color: var(--red);
  font:
    700 8px var(--font-mono),
    monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.portal-image-card h3 {
  margin: 13px 0 10px;
  font-size: 31px;
  letter-spacing: -0.055em;
}
.portal-image-card p {
  max-width: 330px;
  margin: 0;
  color: #a8a6aa;
  font-size: 12px;
  line-height: 1.6;
}
.portal-image-card i {
  position: absolute;
  right: 30px;
  bottom: 30px;
  color: var(--red);
  font-size: 20px;
  font-style: normal;
  transition: transform 0.25s;
}
.portal-image-card:hover i {
  transform: translate(4px, -4px);
}
.portal-feature {
  padding: 124px 0;
  color: white;
  background: #09090a;
}
.portal-feature > .page-width {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(55px, 8vw, 130px);
  align-items: center;
}
.portal-feature h2 {
  margin: 28px 0 26px;
}
.portal-feature p:not(.section-label) {
  max-width: 590px;
  margin: 0 0 32px;
  color: #9b999d;
  font-size: 15px;
  line-height: 1.7;
}
.portal-ai-demo {
  min-height: 400px;
  padding: 46px;
  display: grid;
  align-content: center;
  gap: 0;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(233, 32, 50, 0.22),
      transparent 36%
    ),
    #111113;
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.portal-ai-demo span {
  padding: 22px 0;
  color: #b2b0b4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  font:
    650 10px var(--font-mono),
    monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.portal-ai-demo span:last-child {
  color: white;
  border-bottom: 0;
}
.portal-ai-demo span::first-letter {
  color: var(--red);
}
.portal-final-cta {
  min-height: 510px;
  padding-block: 105px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
  align-items: center;
}
.portal-final-cta .section-label {
  margin-bottom: 26px;
}
.portal-round-link {
  width: 190px;
  height: 190px;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  border-radius: 50%;
  background: var(--red);
  text-decoration: none;
  font-family: var(--font-geist), Arial, sans-serif;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.08;
  transition:
    transform 0.3s,
    background 0.3s;
}
.portal-round-link > span {
  max-width: 118px;
  font-size: 16px;
  font-weight: 780;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.portal-round-link-brief > span {
  max-width: 110px;
  font-size: 22px;
  font-weight: 790;
  line-height: 0.95;
  letter-spacing: -0.045em;
}
.brief-link {
  font-family: var(--font-geist), Arial, sans-serif;
  font-weight: 760;
  letter-spacing: 0.015em;
}
.portal-round-link i {
  align-self: flex-end;
  font-size: 28px;
  font-style: normal;
  transition: transform 0.25s;
}
.portal-round-link:hover {
  background: var(--red-dark);
  transform: scale(1.035);
}
.portal-round-link:hover i {
  transform: translate(5px, -5px);
}
.portal-number-grid {
  padding-bottom: 138px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}
.portal-number-grid article {
  min-height: 260px;
  padding: 32px 60px 40px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.portal-number-grid article:nth-child(even) {
  padding-left: 60px;
  padding-right: 0;
  border-right: 0;
}
.portal-number-grid h3,
.portal-agency-grid h3 {
  margin: 62px 0 12px;
  font-size: 29px;
  letter-spacing: -0.05em;
}
.portal-number-grid p,
.portal-agency-grid p {
  max-width: 510px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.portal-split {
  min-height: 780px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  background: var(--paper-light);
}
.portal-split-image {
  min-height: 720px;
  padding: clamp(30px, 4vw, 64px);
  background: #09090a;
}
.portal-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
}
.portal-split-copy {
  padding: 100px max(32px, calc((100vw - 1380px) / 2)) 100px
    clamp(55px, 6vw, 105px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.portal-split-copy h2 {
  margin: 28px 0 35px;
}
.portal-split-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.portal-split-copy li {
  padding: 17px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #504d48;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.portal-split-copy li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}
.portal-process {
  padding-block: 138px;
}
.portal-process .portal-section-head {
  margin-bottom: 65px;
}
.portal-process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.portal-process-line article {
  min-height: 220px;
  padding: 28px;
  border-right: 1px solid var(--line);
}
.portal-process-line article:first-child {
  padding-left: 0;
}
.portal-process-line article:last-child {
  padding-right: 0;
  border-right: 0;
}
.portal-process-line b {
  color: var(--red);
  font:
    700 9px var(--font-mono),
    monospace;
}
.portal-process-line h3 {
  margin: 65px 0 10px;
  font-size: 20px;
  letter-spacing: -0.04em;
}
.portal-process-line p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}
.portal-agency-grid {
  padding-bottom: 138px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.portal-agency-grid article {
  min-height: 320px;
  padding: 30px 34px;
  border-right: 1px solid var(--line);
}
.portal-agency-grid article:first-child {
  padding-left: 0;
}
.portal-agency-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}
.portal-agency-grid h3 {
  margin-top: 88px;
}
.portal-quote-card {
  min-height: 390px;
  padding: 45px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background:
    radial-gradient(
      circle at 75% 25%,
      rgba(233, 32, 50, 0.24),
      transparent 38%
    ),
    #111113;
}
.portal-quote-card small {
  color: #77757a;
  font:
    650 8px var(--font-mono),
    monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.portal-quote-card strong {
  max-width: 420px;
  margin: 28px 0 55px;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}
.portal-quote-card span {
  padding-top: 16px;
  color: #b8b6ba;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 11px;
}
.portal-quote-card i {
  position: absolute;
  right: 34px;
  bottom: 28px;
  color: var(--red);
  font-size: 22px;
  font-style: normal;
}
.projects-grid {
  padding-bottom: 138px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 24px;
}
.project-card-wide {
  grid-column: 1 / -1;
}
.project-card > div {
  height: 470px;
  overflow: hidden;
  background: #101012;
}
.project-card-wide > div {
  height: min(720px, 65vw);
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-card:hover img {
  transform: scale(1.025);
}
.project-card > p:first-of-type {
  margin: 18px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--red);
  font:
    700 8px var(--font-mono),
    monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.project-card > p:first-of-type span {
  color: #8a867f;
}
.project-card h2 {
  margin: 12px 0 9px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}
.project-card > p:last-child {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.portal-feature-projects > .page-width {
  grid-template-columns: 0.8fr 1.2fr;
}
.portal-feature-projects img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.portal-offer-grid {
  padding-bottom: 138px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}
.portal-offer-grid > a {
  min-height: 250px;
  padding: 30px 56px 34px 0;
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-content: start;
  gap: 0 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition:
    padding 0.25s,
    color 0.25s,
    background 0.25s;
}
.portal-offer-grid > a:nth-child(even) {
  padding-left: 56px;
  padding-right: 0;
  border-right: 0;
}
.portal-offer-grid > a:hover {
  padding-inline: 22px;
  color: var(--red);
  background: rgba(255, 255, 255, 0.34);
}
.portal-offer-grid span {
  color: var(--red);
  font:
    700 9px var(--font-mono),
    monospace;
}
.portal-offer-grid h2 {
  margin: 58px 0 10px;
  grid-column: 1 / -1;
  font-size: 31px;
  letter-spacing: -0.05em;
}
.portal-offer-grid p {
  max-width: 520px;
  margin: 0;
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.portal-offer-grid i {
  position: absolute;
  top: 30px;
  right: 28px;
  color: var(--red);
  font-size: 18px;
  font-style: normal;
  transition: transform 0.25s;
}
.portal-offer-grid > a:hover i {
  transform: translate(4px, -4px);
}
.portal-process-three {
  grid-template-columns: repeat(3, 1fr);
}
.portal-process-line article > a {
  margin-top: 28px;
  display: inline-flex;
  color: var(--ink);
  border-bottom: 1px solid var(--red);
  text-decoration: none;
  font-size: 11px;
  font-weight: 730;
}
.portal-process-line article > a:hover {
  color: var(--red);
}
.portal-tech-list {
  border-top: 1px solid var(--line);
}
.portal-tech-list article {
  min-height: 210px;
  padding: 35px max(32px, calc((100vw - 1380px) / 2));
  display: grid;
  grid-template-columns: 70px 0.9fr 1.1fr 52px;
  gap: 30px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition:
    color 0.25s,
    background 0.25s;
}
.portal-tech-list article:hover {
  color: white;
  background: var(--ink);
}
.portal-tech-list article > span {
  color: var(--red);
  font:
    700 9px var(--font-mono),
    monospace;
}
.portal-tech-list small {
  color: #817d77;
  font:
    650 8px var(--font-mono),
    monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.portal-tech-list h2 {
  margin: 10px 0 0;
  font-size: 29px;
  letter-spacing: -0.045em;
}
.portal-tech-list article > p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.portal-tech-list article:hover > p {
  color: #9e9ca0;
}
.portal-tech-list article > a {
  width: 44px;
  height: 44px;
  justify-self: end;
  display: grid;
  place-items: center;
  color: var(--red);
  border: 1px solid var(--line);
  border-radius: 50%;
  text-decoration: none;
  transition:
    transform 0.25s,
    color 0.25s,
    background 0.25s;
}
.portal-tech-list article:hover > a {
  color: white;
  background: var(--red);
  border-color: var(--red);
}
.portal-tech-list article > a:hover {
  transform: translate(4px, -4px);
}
.portal-feature-print > .page-width {
  grid-template-columns: 0.8fr 1.2fr;
}
.portal-feature-print img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.portal-effects-grid {
  padding-bottom: 138px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.portal-effects-grid article {
  min-height: 300px;
  padding: 30px 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.portal-effects-grid article:nth-child(3n + 1) {
  padding-left: 0;
}
.portal-effects-grid article:nth-child(3n) {
  padding-right: 0;
  border-right: 0;
}
.portal-effects-grid span {
  color: var(--red);
  font:
    700 9px var(--font-mono),
    monospace;
}
.portal-effects-grid h2 {
  margin: 88px 0 12px;
  font-size: 28px;
  letter-spacing: -0.05em;
}
.portal-effects-grid p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.portal-split-paragraph {
  max-width: 540px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.portal-inline-link {
  width: max-content;
  display: inline-flex;
  gap: 18px;
  color: var(--ink);
  border-bottom: 1px solid var(--red);
  text-decoration: none;
  font-size: 12px;
  font-weight: 730;
}
.portal-inline-link i {
  color: var(--red);
  font-style: normal;
  transition: transform 0.25s;
}
.portal-inline-link:hover i {
  transform: translate(4px, -4px);
}
.portal-ordering-dark {
  padding: 0 0 138px;
  color: white;
  background: var(--ink);
}
.portal-ordering-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}
.portal-ordering-grid article {
  min-height: 610px;
  padding: 40px 38px 34px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
}
.portal-ordering-grid article:first-child {
  padding-left: 0;
}
.portal-ordering-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}
.portal-ordering-grid article > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.portal-ordering-grid article > div span {
  color: var(--red);
  font:
    700 10px var(--font-mono),
    monospace;
}
.portal-ordering-grid article > div small {
  color: #6f6d72;
  font:
    650 8px var(--font-mono),
    monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.portal-ordering-grid h2 {
  max-width: 360px;
  margin: 78px 0 15px;
  font-size: clamp(31px, 3.2vw, 49px);
  line-height: 0.94;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}
.portal-ordering-grid > article > p {
  min-height: 48px;
  max-width: 340px;
  margin: 0;
  color: #9e9ca0;
  font-size: 13px;
  line-height: 1.65;
}
.portal-ordering-grid ul {
  margin: 35px 0 42px;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}
.portal-ordering-grid li {
  position: relative;
  padding-left: 17px;
  color: #c0bec1;
  font-size: 12px;
  line-height: 1.55;
}
.portal-ordering-grid li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}
.portal-ordering-grid article > a {
  margin-top: auto;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  text-decoration: none;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.portal-ordering-grid article > a i {
  color: var(--red);
  font-size: 18px;
  font-style: normal;
  transition: transform 0.25s;
}
.portal-ordering-grid article > a:hover i {
  transform: translate(5px, -5px);
}
.portal-contact-grid {
  padding-bottom: 138px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}
.portal-contact-card {
  min-height: 300px;
  padding: 35px 60px 36px 0;
  position: relative;
  color: var(--ink);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition:
    padding 0.25s,
    color 0.25s,
    background 0.25s;
}
.portal-contact-card:nth-child(even) {
  padding-left: 60px;
  padding-right: 0;
  border-right: 0;
}
.portal-contact-card:hover {
  padding-inline: 24px;
  color: var(--red);
  background: rgba(255, 255, 255, 0.38);
}
.portal-contact-card small {
  color: var(--red);
  font:
    700 8px var(--font-mono),
    monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.portal-contact-card h2 {
  margin: 90px 0 10px;
  font-size: 37px;
  letter-spacing: -0.055em;
}
.portal-contact-card p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.portal-contact-card i {
  position: absolute;
  top: 34px;
  right: 30px;
  color: var(--red);
  font-size: 21px;
  font-style: normal;
  transition: transform 0.25s;
}
.portal-contact-card:hover i {
  transform: translate(4px, -4px);
}
.portal-contact-card-primary {
  color: white;
  background: var(--red);
}
.portal-contact-card-primary small,
.portal-contact-card-primary i {
  color: white;
}
.portal-contact-card-primary p {
  color: rgba(255, 255, 255, 0.72);
}
.portal-contact-card-primary:hover {
  color: white;
  background: var(--red-dark);
}
.portal-contact-details {
  padding: 120px 0;
  color: white;
  background: #09090a;
}
.portal-contact-details > .page-width {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 9vw, 150px);
  align-items: start;
}
.portal-contact-details h2 {
  margin: 30px 0 18px;
  font-size: clamp(46px, 5vw, 76px);
  letter-spacing: -0.065em;
  text-transform: uppercase;
}
.portal-contact-details p {
  max-width: 520px;
  color: #9b999d;
  font-size: 14px;
  line-height: 1.7;
}
.portal-contact-details a {
  width: max-content;
  display: inline-flex;
  gap: 18px;
  color: white;
  border-bottom: 1px solid var(--red);
  text-decoration: none;
  font-size: 12px;
  font-weight: 730;
}
.portal-contact-details a i {
  color: var(--red);
  font-style: normal;
}
.portal-hours {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.portal-hours > small {
  padding: 23px 0 12px;
  display: block;
  color: #747277;
  font:
    650 8px var(--font-mono),
    monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.portal-hours p {
  margin: 0;
  padding: 14px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.portal-hours p span {
  color: #aaa8ac;
}
.portal-hours p strong {
  color: white;
  font-weight: 680;
  text-align: right;
}
.portal-social {
  padding-block: 138px;
}
.portal-social .portal-section-head {
  margin-bottom: 65px;
}
.portal-social-links {
  border-top: 1px solid var(--line);
}
.portal-social-links a {
  min-height: 105px;
  display: grid;
  grid-template-columns: 1fr 1fr 44px;
  gap: 30px;
  align-items: center;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition:
    padding 0.25s,
    color 0.25s;
}
.portal-social-links a:hover {
  padding-inline: 18px;
  color: var(--red);
}
.portal-social-links span {
  font-size: 27px;
  font-weight: 720;
  letter-spacing: -0.04em;
}
.portal-social-links small {
  color: var(--muted);
  font:
    650 9px var(--font-mono),
    monospace;
}
.portal-social-links i {
  justify-self: end;
  color: var(--red);
  font-size: 18px;
  font-style: normal;
  transition: transform 0.25s;
}
.portal-social-links a:hover i {
  transform: translate(4px, -4px);
}
.portal-footer .portal-logo-art {
  width: 78px;
}
.portal-footer nav a {
  font-size: 10px;
}

/* Complete shop */
.shop-page {
  --shop-dark: #0a0a0b;
}
.shop-page .portal-hero-shop > img {
  object-position: 58% center;
}
.shop-page .portal-hero h1 {
  max-width: 980px;
}
.shop-quickbar {
  color: white;
  background: var(--shop-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.shop-quickbar > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.shop-quickbar a {
  min-height: 74px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #c1bfc2;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  text-decoration: none;
  font-size: 11px;
  font-weight: 680;
  transition:
    color 0.2s,
    background 0.2s,
    padding 0.2s;
}
.shop-quickbar a:first-child {
  padding-left: 0;
}
.shop-quickbar a:last-child {
  border-right: 0;
}
.shop-quickbar a:hover {
  padding-left: 32px;
  color: white;
  background: rgba(255, 255, 255, 0.035);
}
.shop-quickbar a span {
  color: var(--red);
  font:
    700 8px var(--font-mono),
    monospace;
}
.shop-intro {
  padding-bottom: 105px;
}
.shop-catalog {
  padding: 126px 0 138px;
  scroll-margin-top: 76px;
  background: var(--paper-light);
}
.shop-catalog-heading h2 {
  margin: 0;
  font-size: clamp(50px, 5.7vw, 88px);
  font-weight: 745;
  line-height: 0.9;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}
.shop-catalog-heading h2 em {
  color: var(--red);
  font-style: normal;
}
.shop-catalog-heading > p {
  max-width: 610px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.shop-filters {
  margin-top: 66px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.shop-filters button {
  min-height: 42px;
  padding: 0 18px;
  color: #716d67;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font:
    660 10px var(--font-geist),
    Arial,
    sans-serif;
  cursor: pointer;
  transition:
    color 0.2s,
    background 0.2s,
    border-color 0.2s;
}
.shop-filters button:hover {
  color: var(--ink);
  border-color: var(--ink);
}
.shop-filters button.is-active {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
}
.shop-result-count {
  margin: 22px 0 16px;
  color: #8a867f;
  font:
    650 8px var(--font-mono),
    monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.shop-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 18px;
}
.shop-product-card {
  min-width: 0;
}
.shop-product-image {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  display: block;
  background: #121214;
}
.shop-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.shop-product-image img.position-right {
  object-position: 72% center;
}
.shop-product-image img.position-left {
  object-position: 24% center;
}
.shop-product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 5, 6, 0.28), transparent 42%);
}
.shop-product-image:hover img {
  transform: scale(1.035);
}
.shop-product-image > span {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 9px 11px;
  color: white;
  background: rgba(9, 9, 10, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font:
    680 8px var(--font-mono),
    monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.shop-product-copy {
  padding-top: 20px;
}
.shop-product-copy > small {
  color: var(--red);
  font:
    700 8px var(--font-mono),
    monospace;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.shop-product-copy h3 {
  margin: 11px 0 8px;
  font-size: 27px;
  line-height: 1;
  letter-spacing: -0.05em;
}
.shop-product-copy > p {
  min-height: 42px;
  max-width: 390px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}
.shop-product-copy > div {
  padding-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
}
.shop-product-copy strong {
  color: #67635d;
  font-size: 10px;
  font-weight: 660;
}
.shop-product-copy a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-size: 11px;
  font-weight: 760;
}
.shop-product-copy a i {
  color: var(--red);
  font-size: 16px;
  font-style: normal;
  transition: transform 0.25s;
}
.shop-product-copy a:hover i {
  transform: translate(4px, -4px);
}
.shop-catalog-more {
  margin-top: 70px;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.shop-catalog-more p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.shop-account-section {
  padding: 126px 0 138px;
  color: white;
  background: var(--shop-dark);
}
.shop-account-section .portal-section-head h2 {
  color: white;
}
.shop-account-grid {
  margin-top: 65px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.shop-account-grid > a {
  min-height: 460px;
  padding: 34px 38px 32px;
  display: flex;
  flex-direction: column;
  color: white;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  text-decoration: none;
  transition:
    background 0.25s,
    padding 0.25s;
}
.shop-account-grid > a:first-child {
  padding-left: 0;
}
.shop-account-grid > a:last-child {
  padding-right: 0;
  border-right: 0;
}
.shop-account-grid > a:hover {
  padding-inline: 30px;
  background: rgba(255, 255, 255, 0.035);
}
.shop-account-grid > a > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.shop-account-grid > a > div span {
  color: var(--red);
  font:
    700 9px var(--font-mono),
    monospace;
}
.shop-account-grid > a > div small {
  color: #6f6d72;
  font:
    650 8px var(--font-mono),
    monospace;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.shop-account-grid h3 {
  margin: 105px 0 14px;
  font-size: clamp(35px, 3.4vw, 52px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}
.shop-account-grid p {
  max-width: 340px;
  margin: 0;
  color: #969499;
  font-size: 13px;
  line-height: 1.65;
}
.shop-account-grid b {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 11px;
  letter-spacing: 0.025em;
}
.shop-account-grid b i {
  color: var(--red);
  font-size: 18px;
  font-style: normal;
  transition: transform 0.25s;
}
.shop-account-grid > a:hover b i {
  transform: translate(5px, -5px);
}
.shop-ai-feature {
  background: #101012;
}
.shop-ai-board {
  min-height: 440px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(
      circle at 80% 12%,
      rgba(201, 164, 90, 0.16),
      transparent 32%
    ),
    radial-gradient(
      circle at 16% 88%,
      rgba(233, 32, 50, 0.18),
      transparent 36%
    ),
    #151517;
}
.shop-ai-board > p {
  margin: 0;
  color: var(--red);
  font:
    700 8px var(--font-mono),
    monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.shop-ai-board > strong {
  max-width: 540px;
  padding-left: 20px;
  color: #dedcdf;
  border-left: 2px solid var(--red);
  font-size: clamp(24px, 2.6vw, 39px);
  font-weight: 560;
  line-height: 1.15;
  letter-spacing: -0.04em;
}
.shop-ai-board > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.shop-ai-board span {
  padding: 15px 0;
  color: #88868b;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font:
    630 8px var(--font-mono),
    monospace;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.shop-ai-board span:nth-child(even) {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.shop-process {
  padding-bottom: 138px;
}
.shop-business-band {
  padding: 118px 0;
  color: white;
  background: var(--shop-dark);
}
.shop-business-band > div {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 9vw, 150px);
}
.shop-business-band h2 {
  margin: 28px 0 0;
  font-size: clamp(48px, 5.3vw, 82px);
  line-height: 0.9;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}
.shop-business-band h2 em {
  color: var(--red);
  font-style: normal;
}
.shop-business-links {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.shop-business-links a {
  min-height: 104px;
  display: grid;
  grid-template-columns: 1fr 1fr 34px;
  align-items: center;
  gap: 26px;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  text-decoration: none;
  transition:
    padding 0.25s,
    background 0.25s;
}
.shop-business-links a:hover {
  padding-inline: 18px;
  background: rgba(255, 255, 255, 0.035);
}
.shop-business-links span {
  font-size: 24px;
  font-weight: 710;
  letter-spacing: -0.04em;
}
.shop-business-links small {
  color: #858388;
  font-size: 11px;
  line-height: 1.45;
}
.shop-business-links i {
  justify-self: end;
  color: var(--red);
  font-size: 20px;
  font-style: normal;
  transition: transform 0.25s;
}
.shop-business-links a:hover i {
  transform: translateX(5px);
}
.shop-service-info {
  padding-block: 105px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}
.shop-service-info article {
  min-height: 230px;
  padding: 0 38px;
  border-right: 1px solid var(--line);
}
.shop-service-info article:first-child {
  padding-left: 0;
}
.shop-service-info article:last-child {
  padding-right: 0;
  border-right: 0;
}
.shop-service-info article > span {
  color: var(--red);
  font:
    700 9px var(--font-mono),
    monospace;
}
.shop-service-info h3 {
  margin: 66px 0 12px;
  font-size: 25px;
  letter-spacing: -0.045em;
}
.shop-service-info p {
  max-width: 380px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}
.shop-faq {
  padding-block: 126px;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(60px, 9vw, 150px);
  align-items: start;
}
.shop-faq h2 {
  margin: 28px 0 0;
  font-size: clamp(50px, 5.7vw, 88px);
  line-height: 0.9;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}
.shop-faq h2 em {
  color: var(--red);
  font-style: normal;
}
.shop-faq-list {
  border-top: 1px solid var(--line);
}
.shop-faq-list details {
  border-bottom: 1px solid var(--line);
}
.shop-faq-list summary {
  min-height: 92px;
  display: grid;
  grid-template-columns: 38px 1fr 24px;
  gap: 18px;
  align-items: center;
  list-style: none;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.shop-faq-list summary::-webkit-details-marker {
  display: none;
}
.shop-faq-list summary span {
  color: var(--red);
  font:
    700 8px var(--font-mono),
    monospace;
}
.shop-faq-list summary i {
  color: var(--red);
  font-size: 21px;
  font-style: normal;
  transition: transform 0.25s;
}
.shop-faq-list details[open] summary i {
  transform: rotate(45deg);
}
.shop-faq-list details p {
  max-width: 660px;
  margin: -8px 0 0;
  padding: 0 42px 28px 56px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

/* Store interactions and cart */
.btn-line-dark {
  color: var(--ink);
  border-color: var(--line);
}
.btn-line-dark:hover {
  border-color: var(--ink);
}
.portal-header-tools .portal-header-cart b {
  min-width: 18px;
  color: var(--red);
  font:
    760 9px var(--font-mono),
    monospace;
  text-align: center;
}
.portal-header-tools .portal-header-cart span {
  margin-left: -4px;
}
.shop-product-image {
  width: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  text-align: left;
}
.shop-product-copy button {
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  background: transparent;
  border: 0;
  font:
    760 11px var(--font-geist),
    Arial,
    sans-serif;
  cursor: pointer;
}
.shop-product-copy button i {
  color: var(--red);
  font-size: 16px;
  font-style: normal;
  transition: transform 0.25s;
}
.shop-product-copy button:hover i {
  transform: translateX(4px);
}
.shop-catalog-more > div {
  display: flex;
  gap: 9px;
}
.shop-config-overlay {
  position: fixed;
  z-index: 1000;
  inset: 0;
  padding: 32px;
  display: grid;
  place-items: center;
  overflow-y: auto;
  background: rgba(4, 4, 5, 0.82);
  backdrop-filter: blur(16px);
}
.shop-config-modal {
  width: min(1120px, 100%);
  max-height: calc(100vh - 64px);
  position: relative;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  color: var(--ink);
  background: var(--paper-light);
  box-shadow: 0 35px 120px rgba(0, 0, 0, 0.5);
}
.shop-config-close {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  color: white;
  background: rgba(8, 8, 9, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}
.shop-config-product {
  padding: 36px;
  color: white;
  background: var(--ink);
}
.shop-config-product img {
  width: 100%;
  aspect-ratio: 4 / 4.8;
  object-fit: cover;
  margin-bottom: 28px;
}
.shop-config-product small {
  color: var(--red);
  font:
    700 8px var(--font-mono),
    monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.shop-config-product h2 {
  margin: 13px 0 11px;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 0.91;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}
.shop-config-product p {
  max-width: 440px;
  margin: 0;
  color: #9e9ca0;
  font-size: 13px;
  line-height: 1.65;
}
.shop-config-form {
  padding: 48px;
  display: grid;
  align-content: start;
  gap: 20px;
}
.shop-config-form > label,
.checkout-form label,
.auction-create-form > fieldset > label,
.auction-price-fields > label,
.shop-project-path label {
  display: grid;
  gap: 8px;
}
.shop-config-form label > span,
.checkout-form label > span,
.auction-create-form label > span,
.shop-project-path label > span {
  color: #77736d;
  font:
    650 8px var(--font-mono),
    monospace;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.shop-config-form input,
.shop-config-form select,
.shop-config-form textarea,
.checkout-form input,
.checkout-form textarea,
.auction-create-form input,
.auction-create-form select,
.auction-create-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 2px;
  font:
    520 13px var(--font-geist),
    Arial,
    sans-serif;
  outline: none;
}
.shop-config-form textarea,
.checkout-form textarea,
.auction-create-form textarea {
  min-height: 90px;
  padding-block: 13px;
  resize: vertical;
}
.shop-config-form input:focus,
.shop-config-form select:focus,
.shop-config-form textarea:focus,
.checkout-form input:focus,
.checkout-form textarea:focus,
.auction-create-form input:focus,
.auction-create-form select:focus,
.auction-create-form textarea:focus {
  border-color: var(--red);
}
.shop-config-form fieldset {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border: 0;
}
.shop-config-form legend {
  width: 100%;
  margin-bottom: 8px;
  color: #77736d;
  font:
    650 8px var(--font-mono),
    monospace;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.shop-config-form fieldset label {
  padding: 11px 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--line);
  font-size: 11px;
}
.shop-config-form fieldset input {
  width: auto;
  min-height: 0;
  accent-color: var(--red);
}
.shop-project-path {
  padding: 17px;
  display: grid;
  gap: 13px;
  background: #ece8e0;
  border-left: 3px solid var(--red);
}
.shop-project-path > strong {
  font-size: 13px;
}
.shop-project-path > p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}
.shop-project-path > a {
  width: max-content;
  color: var(--ink);
  border-bottom: 1px solid var(--red);
  text-decoration: none;
  font-size: 11px;
  font-weight: 720;
}
.ready-designs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.ready-designs button {
  min-height: 78px;
  padding: 8px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  text-align: left;
  cursor: pointer;
}
.ready-designs button.is-active {
  border-color: var(--red);
  box-shadow: inset 0 0 0 1px var(--red);
}
.ready-designs i {
  width: 58px;
  height: 58px;
  display: block;
  background: #101012;
}
.ready-designs .red-geometry {
  background: linear-gradient(
    135deg,
    #111 34%,
    var(--red) 35% 58%,
    #c9a45a 59% 66%,
    #111 67%
  );
}
.ready-designs .gold-wave {
  background:
    radial-gradient(ellipse at 80% 30%, #d3b56b 0 13%, transparent 14%),
    linear-gradient(155deg, #111 50%, #b89045 51% 63%, #111 64%);
}
.ready-designs .silver-line {
  background: linear-gradient(
    120deg,
    #111 35%,
    #d7d7d7 36% 39%,
    #111 40% 60%,
    #777 61% 66%,
    #111 67%
  );
}
.ready-designs .organic-mark {
  background:
    radial-gradient(circle at 34% 42%, var(--red) 0 18%, transparent 19%),
    radial-gradient(circle at 70% 66%, #c9a45a 0 15%, transparent 16%), #111;
}
.ready-designs span {
  font-size: 10px;
  font-weight: 680;
}
.shop-config-price {
  margin: 0;
  padding: 13px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  line-height: 1.55;
}
.shop-config-form > .btn {
  width: 100%;
  cursor: pointer;
}
.shop-config-message {
  margin: 0;
  color: #4e4a45;
  font-size: 12px;
}
.shop-config-message a {
  color: var(--red);
  font-weight: 720;
}
.commerce-page,
.account-page,
.auction-page,
.auction-form-page {
  min-height: 100vh;
  padding-top: 76px;
  background: var(--paper-light);
}
.commerce-heading {
  padding-block: 105px 70px;
  display: grid;
  grid-template-columns: 0.35fr 1fr 0.65fr;
  gap: 54px;
  align-items: end;
}
.commerce-heading h1,
.account-hero h1,
.auction-form-heading h1 {
  margin: 0;
  font-size: clamp(60px, 7.4vw, 116px);
  line-height: 0.85;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}
.commerce-heading h1 em,
.account-hero h1 em,
.auction-form-heading h1 em {
  color: var(--red);
  font-style: normal;
}
.commerce-heading > p:last-child {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.cart-layout {
  padding-bottom: 130px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: start;
}
.cart-items {
  border-top: 1px solid var(--line);
}
.cart-section-head {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.cart-section-head span {
  color: var(--red);
  font:
    700 9px var(--font-mono),
    monospace;
}
.cart-section-head h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.045em;
}
.cart-item {
  padding: 28px 0;
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 25px;
  border-bottom: 1px solid var(--line);
}
.cart-item > img {
  width: 130px;
  height: 160px;
  object-fit: cover;
}
.cart-item small {
  color: var(--red);
  font:
    700 8px var(--font-mono),
    monospace;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.cart-item h3 {
  margin: 8px 0 14px;
  font-size: 22px;
  letter-spacing: -0.045em;
}
.cart-item dl {
  margin: 0;
  display: grid;
  gap: 5px;
}
.cart-item dl div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
}
.cart-item dt {
  color: #8a867f;
  font:
    620 8px var(--font-mono),
    monospace;
  text-transform: uppercase;
}
.cart-item dd {
  margin: 0;
  color: #55514c;
  font-size: 11px;
}
.cart-item > div > p {
  max-width: 430px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}
.cart-quantity {
  display: grid;
  grid-template-columns: 32px 48px 32px;
  align-content: start;
}
.cart-quantity button,
.cart-quantity input {
  height: 34px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  text-align: center;
}
.cart-quantity button {
  cursor: pointer;
}
.cart-quantity input {
  width: 48px;
  border-inline: 0;
  font-size: 11px;
}
.cart-quantity .cart-remove {
  width: 100%;
  grid-column: 1 / -1;
  margin-top: 9px;
  color: var(--red);
  background: transparent;
  border: 0;
  font-size: 10px;
}
.cart-empty {
  min-height: 360px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 20px;
}
.cart-empty p {
  margin: 0;
  color: var(--muted);
}
.checkout-form {
  position: sticky;
  top: 100px;
  padding: 38px;
  display: grid;
  gap: 20px;
  color: white;
  background: var(--ink);
}
.checkout-form h2 {
  margin: 6px 0 10px;
  font-size: 35px;
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.checkout-form input,
.checkout-form textarea {
  color: white;
  background: #171719;
  border-color: #343438;
}
.checkout-form input[type="file"] {
  min-height: 65px;
  padding-block: 12px;
}
.delivery-options {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border: 0;
}
.delivery-options legend {
  margin-bottom: 9px;
  color: #8e8c90;
  font:
    650 8px var(--font-mono),
    monospace;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.delivery-options label {
  padding: 11px;
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #343438;
  font-size: 10px;
}
.delivery-options input {
  width: auto;
  min-height: 0;
  accent-color: var(--red);
}
.checkout-summary {
  padding-block: 15px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 20px;
  border-top: 1px solid #343438;
  border-bottom: 1px solid #343438;
}
.checkout-summary span {
  color: #88868b;
  font-size: 11px;
}
.checkout-summary strong {
  font-size: 11px;
  text-align: right;
}
.checkout-consent {
  display: flex !important;
  align-items: flex-start;
  gap: 9px !important;
  color: #aaa8ac;
  font-size: 10px;
  line-height: 1.45;
}
.checkout-consent input {
  width: auto;
  min-height: 0;
  accent-color: var(--red);
}
.checkout-form > .btn {
  width: 100%;
  cursor: pointer;
}
.checkout-form > .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.checkout-error {
  margin: 0;
  padding: 12px;
  color: white;
  background: rgba(233, 32, 50, 0.16);
  border: 1px solid rgba(233, 32, 50, 0.45);
  font-size: 11px;
  line-height: 1.5;
}
.checkout-login-note {
  margin: 0;
  color: #87858a;
  font-size: 10px;
  text-align: center;
}
.checkout-login-note a {
  color: white;
}
.commerce-success {
  min-height: calc(100vh - 226px);
  padding-block: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.commerce-success > span,
.auction-published > span {
  width: 70px;
  height: 70px;
  margin-bottom: 32px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 50%;
  background: var(--red);
  font-size: 30px;
}
.commerce-success h1 {
  margin: 30px 0 22px;
  font-size: clamp(58px, 7vw, 105px);
  line-height: 0.86;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}
.commerce-success h1 em {
  color: var(--red);
  font-style: normal;
}
.commerce-success > p:not(.section-label) {
  max-width: 670px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.commerce-success > div,
.auction-published > div {
  display: flex;
  gap: 10px;
}

/* Customer account */
.account-hero {
  min-height: 540px;
  padding-block: 100px 70px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
  align-items: end;
}
.account-hero > div:first-child > p:last-child {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.account-actions {
  min-width: 280px;
  border-top: 1px solid var(--line);
}
.account-actions a {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-size: 12px;
  font-weight: 690;
  transition:
    padding 0.2s,
    color 0.2s;
}
.account-actions a:hover {
  padding-inline: 12px;
  color: var(--red);
}
.account-actions a:last-child {
  color: var(--muted);
}
.account-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.account-stats article {
  min-height: 190px;
  padding: 30px;
  border-right: 1px solid var(--line);
}
.account-stats article:first-child {
  padding-left: 0;
}
.account-stats article:last-child {
  border-right: 0;
}
.account-stats span {
  color: var(--red);
  font-size: 58px;
  font-weight: 760;
  letter-spacing: -0.06em;
}
.account-stats p {
  margin: 35px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}
.account-notice {
  margin-top: 25px;
  padding: 15px;
  color: #5f5b55;
  background: #ece8e0;
  font-size: 12px;
}
.account-section {
  padding-block: 115px;
}
.account-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 45px;
}
.account-section-head h2 {
  margin: 0;
  font-size: clamp(45px, 5vw, 72px);
  letter-spacing: -0.065em;
  text-transform: uppercase;
}
.account-table {
  border-top: 1px solid var(--line);
}
.account-table article {
  min-height: 100px;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.account-table article > div {
  display: grid;
  gap: 6px;
}
.account-table small {
  color: #8a867f;
  font:
    620 8px var(--font-mono),
    monospace;
}
.account-table strong {
  font-size: 13px;
}
.account-table p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.status {
  padding: 8px 10px;
  color: #5e5a55;
  background: #e9e5dd;
  border-radius: 999px;
  font:
    680 8px var(--font-mono),
    monospace;
  text-transform: uppercase;
}
.status-new,
.status-active {
  color: white;
  background: var(--red);
}
.status-completed,
.status-sold {
  color: white;
  background: #2d7547;
}
.account-empty {
  min-height: 200px;
  display: grid;
  align-content: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.account-empty p {
  margin: 0;
  color: var(--muted);
}
.account-empty a {
  width: max-content;
  color: var(--ink);
  border-bottom: 1px solid var(--red);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}
.account-section-dark {
  padding-block: 115px;
  color: white;
  background: var(--ink);
}
.account-section-dark .account-section-head {
  color: white;
}
.account-empty.dark {
  border-color: rgba(255, 255, 255, 0.16);
}
.account-empty.dark a {
  color: white;
}
.account-auctions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.account-auctions article {
  background: #141416;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.account-auctions img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.account-auctions article > div {
  padding: 22px;
}
.account-auctions small {
  color: var(--red);
  font:
    680 8px var(--font-mono),
    monospace;
  text-transform: uppercase;
}
.account-auctions h3 {
  margin: 10px 0 8px;
  font-size: 22px;
  letter-spacing: -0.04em;
}
.account-auctions p {
  margin: 0 0 18px;
  color: #8e8c90;
  font-size: 11px;
}

/* Auctions and listing form */
.auction-page {
  padding-top: 0;
}
.auction-hero {
  min-height: 760px;
  padding-top: 76px;
  display: flex;
  align-items: center;
  color: white;
  background:
    radial-gradient(
      circle at 78% 26%,
      rgba(201, 164, 90, 0.17),
      transparent 28%
    ),
    radial-gradient(
      circle at 18% 82%,
      rgba(233, 32, 50, 0.23),
      transparent 34%
    ),
    #080809;
}
.auction-hero > div {
  padding-block: 105px;
}
.auction-hero h1 {
  max-width: 1050px;
  margin: 27px 0 26px;
  font-size: clamp(66px, 8vw, 124px);
  line-height: 0.84;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}
.auction-hero h1 em {
  color: transparent;
  -webkit-text-stroke: 1.25px rgba(255, 255, 255, 0.88);
  font-style: normal;
}
.auction-hero > div > p:not(.section-label) {
  max-width: 670px;
  margin: 0 0 32px;
  color: #aaa8ac;
  font-size: 16px;
  line-height: 1.65;
}
.auction-hero > div > div {
  display: flex;
  gap: 10px;
}
.auction-marketplace {
  padding-block: 120px;
}
.auction-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 55px;
}
.auction-toolbar h2 {
  margin: 18px 0 0;
  font-size: clamp(55px, 6vw, 92px);
  line-height: 0.85;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}
.auction-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}
.auction-filters button {
  min-height: 40px;
  padding: 0 16px;
  color: #6d6963;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 10px;
  cursor: pointer;
}
.auction-filters button.is-active {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
}
.auction-message {
  margin: 0 0 25px;
  padding: 13px 16px;
  color: #4e4a45;
  background: #ede8df;
  border-left: 3px solid var(--red);
  font-size: 12px;
}
.auction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px 18px;
}
.auction-card {
  min-width: 0;
}
.auction-image {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background: #111113;
}
.auction-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.auction-card:hover .auction-image img {
  transform: scale(1.025);
}
.auction-image span {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 8px 10px;
  color: white;
  background: rgba(8, 8, 9, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font:
    650 8px var(--font-mono),
    monospace;
  text-transform: uppercase;
}
.auction-copy {
  padding-top: 18px;
}
.auction-copy > small {
  color: var(--red);
  font:
    650 8px var(--font-mono),
    monospace;
  text-transform: uppercase;
}
.auction-copy h3 {
  margin: 11px 0 8px;
  font-size: 27px;
  line-height: 1;
  letter-spacing: -0.05em;
}
.auction-copy > p {
  min-height: 58px;
  margin: 0 0 20px;
  overflow: hidden;
  display: -webkit-box;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.auction-price {
  padding-block: 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 15px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.auction-price span {
  color: #77736d;
  font:
    650 8px var(--font-mono),
    monospace;
  text-transform: uppercase;
}
.auction-price strong {
  grid-row: 1 / 3;
  grid-column: 2;
  font-size: 23px;
  letter-spacing: -0.04em;
}
.auction-price small {
  color: #8a867f;
  font-size: 10px;
}
.auction-copy form {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}
.auction-copy form label {
  height: 44px;
  padding-left: 12px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid var(--line);
}
.auction-copy form label span {
  color: #827e77;
  font-size: 9px;
}
.auction-copy form input {
  width: 100%;
  height: 42px;
  padding: 0 10px;
  border: 0;
  outline: 0;
  font-size: 12px;
  text-align: right;
}
.auction-copy form button,
.auction-buy-now {
  min-height: 44px;
  padding: 0 17px;
  color: white;
  background: var(--ink);
  border: 0;
  font-size: 10px;
  font-weight: 720;
  cursor: pointer;
}
.auction-buy-now {
  width: 100%;
  margin-top: 8px;
  background: var(--red);
}
.auction-copy button:disabled {
  opacity: 0.5;
  cursor: wait;
}
.auction-empty {
  min-height: 340px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 20px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.auction-empty p {
  margin: 0;
}
.auction-rules {
  margin-top: 80px;
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.auction-rules p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}
.auction-rules a {
  color: var(--ink);
  border-bottom: 1px solid var(--red);
  text-decoration: none;
  font-size: 12px;
  font-weight: 720;
  white-space: nowrap;
}
.auction-form-heading {
  padding-block: 105px 80px;
  display: grid;
  grid-template-columns: 0.35fr 1fr 0.65fr;
  gap: 50px;
  align-items: end;
}
.auction-form-heading h1 {
  grid-column: 1 / 3;
}
.auction-form-heading > p:last-child {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.auction-form-layout {
  padding-bottom: 130px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: start;
}
.auction-create-form {
  display: grid;
  gap: 22px;
}
.auction-create-form > fieldset {
  margin: 0;
  padding: 34px;
  display: grid;
  gap: 18px;
  background: white;
  border: 1px solid var(--line);
}
.auction-create-form > fieldset > legend {
  padding: 0 12px;
  color: var(--red);
  background: var(--paper-light);
  font:
    700 9px var(--font-mono),
    monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.auction-file input {
  padding: 12px;
}
.auction-file img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
}
.auction-file i {
  min-height: 150px;
  display: grid;
  place-items: center;
  color: #8a867f;
  background: #f1eee8;
  border: 1px dashed var(--line);
  font-size: 12px;
  font-style: normal;
}
.sale-mode {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.sale-mode label {
  padding: 16px;
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  cursor: pointer;
}
.sale-mode label.is-active {
  border-color: var(--red);
  box-shadow: inset 0 0 0 1px var(--red);
}
.sale-mode input {
  width: auto;
  min-height: 0;
  justify-self: start;
  accent-color: var(--red);
}
.sale-mode strong {
  font-size: 12px;
}
.sale-mode span {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}
.auction-price-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.auction-price-fields label > div {
  position: relative;
}
.auction-price-fields label b {
  position: absolute;
  right: 13px;
  top: 50%;
  color: #77736d;
  font-size: 11px;
  transform: translateY(-50%);
}
.auction-price-fields input {
  padding-right: 40px;
}
.auction-terms {
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  background: #eeeae2;
  font-size: 11px;
  line-height: 1.5;
}
.auction-terms input {
  width: auto;
  min-height: 0;
  accent-color: var(--red);
}
.auction-create-form > .btn {
  width: 100%;
  cursor: pointer;
}
.auction-form-help {
  position: sticky;
  top: 100px;
  padding: 40px;
  color: white;
  background: var(--ink);
}
.auction-form-help h2 {
  margin: 25px 0 32px;
  font-size: 40px;
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}
.auction-form-help ol {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.auction-form-help li {
  min-height: 60px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  color: #bbb9bd;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 11px;
}
.auction-form-help li span {
  color: var(--red);
  font:
    700 8px var(--font-mono),
    monospace;
}
.auction-form-help > p:last-child {
  margin: 0;
  color: #88868b;
  font-size: 11px;
  line-height: 1.6;
}
.auction-published {
  min-height: 600px;
  padding-block: 120px;
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
}
.auction-published h2 {
  margin: 0 0 12px;
  font-size: clamp(48px, 6vw, 82px);
  letter-spacing: -0.06em;
  text-transform: uppercase;
}
.auction-published p {
  margin: 0 0 30px;
  color: var(--muted);
}

/* Owner gallery */
.gallery-admin-page {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--paper-light);
}
.gallery-admin-shell {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 42px 0 110px;
}
.gallery-admin-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
  color: #7d7972;
  font:
    600 9px var(--font-mono),
    monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.gallery-back {
  color: var(--ink);
  text-decoration: none;
}
.gallery-back:hover {
  color: var(--red);
}
.gallery-admin-heading {
  padding: 90px 0 70px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: end;
}
.gallery-admin-heading .section-label {
  grid-column: 1 / -1;
}
.gallery-admin-heading h1 {
  margin: 0;
  font-size: clamp(62px, 8vw, 116px);
  font-weight: 760;
  line-height: 0.86;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}
.gallery-admin-heading h1 em {
  color: var(--red);
  font-style: normal;
}
.gallery-admin-heading > p:last-child {
  max-width: 480px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.gallery-admin-content {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 60px;
  align-items: start;
}
.upload-form {
  position: sticky;
  top: 32px;
  padding: 34px;
  display: grid;
  gap: 22px;
  color: white;
  background: var(--ink);
  border-radius: 3px;
}
.upload-form label {
  display: grid;
  gap: 9px;
}
.upload-form label > span {
  color: #97959a;
  font:
    600 8px var(--font-mono),
    monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.upload-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: white;
  background: #171719;
  border: 1px solid #323236;
  border-radius: 2px;
  font:
    500 13px var(--font-geist),
    Arial,
    sans-serif;
  outline: none;
}
.upload-form input:focus {
  border-color: var(--red);
}
.upload-form input[type="file"] {
  padding: 12px;
  min-height: 58px;
}
.upload-form .btn {
  width: 100%;
  cursor: pointer;
}
.upload-form .btn:disabled {
  opacity: 0.55;
  cursor: wait;
}
.upload-message {
  margin: 0;
  color: #d1cfd1;
  font-size: 12px;
  line-height: 1.5;
}
.uploaded-gallery > div:first-child {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.uploaded-gallery h2 {
  margin: 0;
  font-size: 31px;
  letter-spacing: -0.04em;
}
.gallery-empty {
  padding: 40px 0;
  color: var(--muted);
  font-size: 14px;
}
.uploaded-grid {
  padding-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.uploaded-grid article {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
}
.uploaded-grid article > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.uploaded-grid article > div {
  min-height: 64px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.uploaded-grid strong {
  font-size: 12px;
}
.uploaded-grid button {
  padding: 7px 10px;
  color: var(--red);
  background: transparent;
  border: 1px solid rgba(233, 32, 50, 0.25);
  border-radius: 999px;
  font-size: 10px;
  cursor: pointer;
}
.uploaded-grid button:hover {
  color: white;
  background: var(--red);
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }
  .site-header > nav,
  .header-contact {
    display: none;
  }
  .mobile-nav {
    position: relative;
    display: block;
    justify-self: end;
  }
  .mobile-nav summary {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 7px;
    list-style: none;
    border: 1px solid #3a3a3e;
    border-radius: 50%;
    cursor: pointer;
  }
  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }
  .mobile-nav summary i {
    width: 17px;
    height: 1px;
    background: white;
    transition: transform 0.2s;
  }
  .mobile-nav[open] summary i:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .mobile-nav[open] summary i:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  .mobile-nav > div {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    padding: 18px 32px 28px;
    display: grid;
    background: #0a0a0b;
    border-top: 1px solid #29292d;
  }
  .mobile-nav > div a {
    padding: 14px 0;
    color: white;
    text-decoration: none;
    font-size: 19px;
    border-bottom: 1px solid #28282b;
  }
  .portal-header {
    grid-template-columns: 1fr auto;
  }
  .portal-header > nav,
  .portal-header-cta,
  .portal-header-tools {
    display: none;
  }
  .portal-mobile-nav {
    position: relative;
    display: block;
    justify-self: end;
  }
  .portal-mobile-nav summary {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 7px;
    list-style: none;
    border: 1px solid #3a3a3e;
    border-radius: 50%;
    cursor: pointer;
  }
  .portal-mobile-nav summary::-webkit-details-marker {
    display: none;
  }
  .portal-mobile-nav summary i {
    width: 17px;
    height: 1px;
    background: white;
    transition: transform 0.2s;
  }
  .portal-mobile-nav[open] summary i:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .portal-mobile-nav[open] summary i:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  .portal-mobile-nav > div {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    padding: 18px 32px 28px;
    display: grid;
    background: #0a0a0b;
    border-top: 1px solid #29292d;
  }
  .portal-mobile-nav > div a {
    padding: 14px 0;
    color: white;
    text-decoration: none;
    font-size: 19px;
    border-bottom: 1px solid #28282b;
  }
  .portal-intro,
  .portal-section-head {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .portal-intro > div {
    grid-template-columns: 1fr 1fr;
  }
  .portal-steps,
  .portal-agency-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portal-steps article:nth-child(2),
  .portal-agency-grid article:nth-child(2) {
    border-right: 0;
  }
  .portal-steps article,
  .portal-agency-grid article {
    border-bottom: 1px solid var(--line);
  }
  .portal-card-grid {
    grid-template-columns: 1fr 1fr;
  }
  .portal-image-card:last-child {
    grid-column: 1 / -1;
    min-height: 500px;
  }
  .portal-feature > .page-width {
    grid-template-columns: 1fr;
  }
  .portal-split {
    grid-template-columns: 1fr;
  }
  .portal-split-copy {
    padding-inline: max(32px, calc((100vw - 900px) / 2));
  }
  .portal-process-line {
    grid-template-columns: repeat(2, 1fr);
  }
  .portal-process-three {
    grid-template-columns: repeat(3, 1fr);
  }
  .portal-process-line article:nth-child(2) {
    border-right: 0;
  }
  .portal-process-three article:nth-child(2) {
    border-right: 1px solid var(--line);
  }
  .portal-process-line article {
    border-bottom: 1px solid var(--line);
  }
  .portal-feature-projects > .page-width,
  .portal-feature-print > .page-width {
    grid-template-columns: 1fr;
  }
  .portal-effects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portal-effects-grid article,
  .portal-effects-grid article:nth-child(3n + 1),
  .portal-effects-grid article:nth-child(3n) {
    padding-inline: 30px;
    border-right: 1px solid var(--line);
  }
  .portal-effects-grid article:nth-child(odd) {
    padding-left: 0;
  }
  .portal-effects-grid article:nth-child(even) {
    padding-right: 0;
    border-right: 0;
  }
  .portal-ordering-grid {
    grid-template-columns: 1fr;
  }
  .portal-ordering-grid article,
  .portal-ordering-grid article:first-child,
  .portal-ordering-grid article:last-child {
    min-height: 0;
    padding: 40px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  }
  .portal-ordering-grid article:last-child {
    border-bottom: 0;
  }
  .portal-ordering-grid h2 {
    margin-top: 50px;
  }
  .portal-contact-details > .page-width {
    grid-template-columns: 1fr;
  }
  .portal-contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .statement,
  .print-intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .statement > div,
  .print-intro > div {
    grid-template-columns: 1fr 1fr;
  }
  .texture-story {
    grid-template-columns: 1fr;
  }
  .texture-image {
    height: 70vw;
    min-height: 560px;
  }
  .texture-copy {
    padding: 90px max(32px, calc((100vw - 900px) / 2));
  }
  .ordering-intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ordering-intro > div {
    grid-template-columns: 1fr 1fr;
  }
  .ordering-way {
    padding-inline: 26px;
  }
  .ordering-way:first-child {
    padding-left: 0;
  }
  .ordering-way:last-child {
    padding-right: 0;
  }
  .ai-creator {
    grid-template-columns: 1fr;
  }
  .ai-creator-copy {
    max-width: 720px;
  }
  .contact-section {
    grid-template-columns: 1fr;
  }
  .contact-copy,
  .contact-side {
    padding-inline: max(32px, calc((100vw - 900px) / 2));
  }
  .contact-side {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .page-width {
    width: calc(100% - 36px);
  }
  .portal-header {
    height: 68px;
    padding-inline: 18px;
  }
  .portal-mobile-nav > div {
    top: 68px;
    padding-inline: 18px;
  }
  .portal-hero {
    min-height: 0;
    height: 780px;
  }
  .portal-hero > img {
    object-position: 65% center;
  }
  .portal-hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 5, 6, 0.88), rgba(5, 5, 6, 0.32)),
      linear-gradient(0deg, rgba(5, 5, 6, 0.78), transparent 55%);
  }
  .portal-hero-copy {
    padding-top: 110px;
    padding-bottom: 125px;
    justify-content: flex-end;
  }
  .portal-hero h1 {
    font-size: clamp(49px, 14.5vw, 72px);
    letter-spacing: -0.055em;
  }
  .portal-hero-copy > p:not(.portal-eyebrow) {
    margin: 24px 0 28px;
    font-size: 14px;
  }
  .portal-actions {
    width: 100%;
    flex-direction: column;
  }
  .portal-actions .btn {
    width: 100%;
  }
  .portal-hero-meta {
    bottom: 20px;
    flex-wrap: wrap;
    gap: 9px 20px;
  }
  .portal-hero-meta span {
    font-size: 7px;
  }
  .portal-intro {
    padding-block: 84px;
  }
  .portal-intro > div {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .portal-intro h2,
  .portal-section-head h2,
  .portal-split-copy h2,
  .portal-feature h2,
  .portal-final-cta h2 {
    font-size: clamp(45px, 13vw, 65px);
  }
  .portal-steps {
    padding-bottom: 84px;
    grid-template-columns: 1fr;
  }
  .portal-steps article,
  .portal-steps article:first-child,
  .portal-steps article:last-child {
    min-height: 0;
    padding: 25px 0 30px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .portal-steps h3 {
    margin-top: 36px;
  }
  .portal-categories {
    padding-block: 84px;
  }
  .portal-card-grid {
    margin-top: 42px;
    grid-template-columns: 1fr;
  }
  .portal-image-card,
  .portal-image-card:last-child {
    min-height: 510px;
    grid-column: auto;
  }
  .portal-image-card > div {
    padding: 24px;
  }
  .portal-feature {
    padding-block: 84px;
  }
  .portal-feature > .page-width {
    gap: 45px;
  }
  .portal-ai-demo,
  .portal-quote-card {
    min-height: 330px;
    padding: 25px;
  }
  .portal-final-cta {
    min-height: 0;
    padding-block: 84px;
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .portal-round-link {
    width: 160px;
    height: 160px;
    justify-self: end;
    padding: 29px;
  }
  .portal-round-link-brief > span {
    font-size: 19px;
  }
  .portal-number-grid {
    padding-bottom: 84px;
    grid-template-columns: 1fr;
  }
  .portal-number-grid article,
  .portal-number-grid article:nth-child(even) {
    min-height: 0;
    padding: 25px 0 32px;
    border-right: 0;
  }
  .portal-number-grid h3,
  .portal-agency-grid h3 {
    margin-top: 38px;
  }
  .portal-split-image {
    min-height: 520px;
    padding: 20px;
  }
  .portal-split-copy {
    padding: 84px 18px;
  }
  .portal-process {
    padding-block: 84px;
  }
  .portal-process .portal-section-head {
    margin-bottom: 42px;
  }
  .portal-process-line,
  .portal-process-three {
    grid-template-columns: 1fr;
  }
  .portal-process-line article,
  .portal-process-line article:first-child,
  .portal-process-line article:last-child {
    min-height: 0;
    padding: 25px 0 30px;
    border-right: 0;
  }
  .portal-process-line h3 {
    margin-top: 36px;
  }
  .portal-agency-grid {
    padding-bottom: 84px;
    grid-template-columns: 1fr;
  }
  .portal-agency-grid article,
  .portal-agency-grid article:first-child,
  .portal-agency-grid article:last-child {
    min-height: 0;
    padding: 25px 0 32px;
    border-right: 0;
  }
  .projects-grid {
    padding-bottom: 84px;
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .project-card-wide {
    grid-column: auto;
  }
  .project-card > div,
  .project-card-wide > div {
    height: 64vw;
    min-height: 350px;
  }
  .portal-feature-projects img,
  .portal-feature-print img {
    height: 65vw;
    min-height: 360px;
  }
  .portal-offer-grid {
    padding-bottom: 84px;
    grid-template-columns: 1fr;
  }
  .portal-offer-grid > a,
  .portal-offer-grid > a:nth-child(even) {
    min-height: 0;
    padding: 25px 0 30px;
    border-right: 0;
  }
  .portal-offer-grid h2 {
    margin-top: 48px;
  }
  .portal-tech-list article {
    padding: 30px 18px;
    grid-template-columns: 28px 1fr 40px;
    gap: 15px;
  }
  .portal-tech-list article > p {
    grid-column: 2 / 4;
  }
  .portal-tech-list article > a {
    grid-column: 3;
    grid-row: 1;
  }
  .portal-tech-list h2 {
    font-size: 22px;
  }
  .portal-effects-grid {
    padding-bottom: 84px;
    grid-template-columns: 1fr;
  }
  .portal-effects-grid article,
  .portal-effects-grid article:nth-child(n) {
    min-height: 0;
    padding: 25px 0 32px;
    border-right: 0;
  }
  .portal-effects-grid h2 {
    margin-top: 48px;
  }
  .portal-ordering-dark {
    padding-bottom: 84px;
  }
  .portal-ordering-grid article,
  .portal-ordering-grid article:first-child,
  .portal-ordering-grid article:last-child {
    padding: 35px 0;
  }
  .portal-ordering-grid h2 {
    margin-top: 45px;
  }
  .portal-contact-grid {
    padding-bottom: 84px;
    grid-template-columns: 1fr;
  }
  .portal-contact-card,
  .portal-contact-card:nth-child(even) {
    min-height: 245px;
    padding: 26px 0 30px;
    border-right: 0;
  }
  .portal-contact-card-primary {
    margin-inline: -18px;
    padding-inline: 18px;
  }
  .portal-contact-card-primary:hover {
    padding-inline: 28px;
  }
  .portal-contact-card h2 {
    margin-top: 62px;
    font-size: 31px;
  }
  .portal-contact-details {
    padding-block: 84px;
  }
  .portal-contact-details > .page-width {
    gap: 52px;
  }
  .portal-hours p {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .portal-hours p strong {
    text-align: left;
  }
  .portal-social {
    padding-block: 84px;
  }
  .portal-social .portal-section-head {
    margin-bottom: 42px;
  }
  .portal-social-links a {
    min-height: 94px;
    grid-template-columns: 1fr 32px;
    gap: 8px 20px;
  }
  .portal-social-links small {
    grid-column: 1;
  }
  .portal-social-links i {
    grid-column: 2;
    grid-row: 1 / 3;
  }
  .portal-footer {
    padding: 42px 18px;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .portal-footer nav {
    justify-content: flex-start;
  }
  .portal-footer p {
    justify-self: start;
  }
  .intro {
    height: 210vh;
  }
  .intro-logo .logo-art {
    width: min(78vw, 420px);
  }
  .intro-scroll {
    bottom: 28px;
  }
  .site-header {
    height: 68px;
    padding-inline: 18px;
  }
  .mobile-nav > div {
    top: 68px;
    padding-inline: 18px;
  }
  .hero {
    height: 780px;
    min-height: 0;
  }
  .hero-slide {
    object-position: 62% center;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(6, 6, 7, 0.83), rgba(6, 6, 7, 0.32)),
      linear-gradient(0deg, rgba(6, 6, 7, 0.75), transparent 50%);
  }
  .hero-content {
    padding-top: 100px;
    padding-bottom: 130px;
    justify-content: flex-end;
  }
  .hero h1 {
    font-size: clamp(50px, 15vw, 76px);
    letter-spacing: -0.025em;
  }
  .hero h1 em {
    -webkit-text-stroke-width: 1px;
    letter-spacing: -0.01em;
  }
  .hero-content > p:not(.kicker) {
    font-size: 15px;
  }
  .hero-actions {
    width: 100%;
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-meta {
    bottom: 20px;
    flex-wrap: wrap;
    gap: 10px 20px;
  }
  .hero-meta span {
    font-size: 7px;
  }
  .hero-slider-controls {
    top: 88px;
    right: 18px;
    left: 18px;
    bottom: auto;
    flex-direction: column;
    align-items: flex-end;
    gap: 7px;
  }
  .hero-slider-controls > div {
    max-width: 100%;
  }
  .hero-slider-controls button {
    flex-basis: 18px;
    min-width: 12px;
  }
  .hero-slider-controls p {
    font-size: 7px;
  }
  .statement {
    padding-block: 88px;
  }
  .statement > div,
  .print-intro > div,
  .services-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .statement h2,
  .print-intro h2,
  .texture-copy h2,
  .services-head h2,
  .contact-copy h2 {
    font-size: clamp(46px, 13vw, 66px);
  }
  .photo-story {
    min-height: 720px;
    height: 82vh;
  }
  .photo-story > img {
    object-position: 56% center;
  }
  .photo-overlay {
    background: linear-gradient(
      0deg,
      rgba(7, 7, 8, 0.88),
      rgba(7, 7, 8, 0.08) 70%
    );
  }
  .photo-copy {
    left: 18px;
    right: 18px;
    top: auto;
    bottom: 60px;
    max-width: none;
    transform: none;
  }
  .photo-copy h2 {
    font-size: clamp(54px, 15vw, 78px);
  }
  .print-section {
    padding-top: 88px;
  }
  .print-intro {
    padding-bottom: 50px;
  }
  .print-list article {
    padding: 30px 18px;
    grid-template-columns: 28px 1fr 40px;
    gap: 15px;
  }
  .print-list article > p {
    grid-column: 2 / 4;
  }
  .print-list article > a {
    grid-column: 3;
    grid-row: 1;
  }
  .print-name h3 {
    font-size: 22px;
  }
  .texture-image {
    height: 70vh;
    min-height: 520px;
    padding: 20px;
  }
  .texture-image img {
    object-position: center;
  }
  .texture-copy {
    padding: 84px 18px;
  }
  .services {
    padding-block: 88px;
  }
  .services-head {
    margin-bottom: 42px;
  }
  .service-list a {
    min-height: 180px;
    padding: 25px 0;
    grid-template-columns: 28px 1fr 32px;
    gap: 14px;
    align-items: start;
  }
  .service-list h3 {
    font-size: 22px;
  }
  .service-list p {
    grid-column: 2 / 4;
  }
  .service-list i {
    grid-column: 3;
    grid-row: 1;
  }
  .ordering-section {
    padding-bottom: 88px;
    scroll-margin-top: 68px;
  }
  .ordering-portals {
    grid-template-columns: 1fr;
  }
  .ordering-portals a,
  .ordering-portals a:first-child,
  .ordering-portals a:last-child {
    min-height: 62px;
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .ordering-portals a:last-child {
    border-bottom: 0;
  }
  .ordering-portals a:hover {
    padding-left: 12px;
  }
  .ordering-manifesto {
    padding: 26px 0 23px;
    font-size: clamp(17px, 6vw, 27px);
    text-align: left;
    text-align-last: left;
    white-space: normal;
  }
  .ordering-intro {
    padding: 82px 0 54px;
  }
  .ordering-intro > div {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .ordering-intro h2 {
    font-size: clamp(50px, 15vw, 76px);
  }
  .ordering-grid {
    grid-template-columns: 1fr;
  }
  .ordering-way,
  .ordering-way:first-child,
  .ordering-way:last-child {
    min-height: 0;
    padding: 34px 0 38px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  .ordering-way:last-child {
    border-bottom: 0;
  }
  .ordering-way h3 {
    margin-top: 48px;
  }
  .ordering-way > p {
    min-height: 0;
  }
  .ordering-way ul {
    margin: 28px 0 34px;
  }
  .ai-creator {
    margin-top: 58px;
    padding: 34px 20px;
    gap: 42px;
  }
  .ai-creator-copy h3 {
    font-size: clamp(44px, 13vw, 64px);
  }
  .ai-creator-visual {
    padding: 14px;
  }
  .ai-prompt {
    padding: 18px;
  }
  .ai-prompt p {
    font-size: 14px;
  }
  .ai-steps {
    grid-template-columns: 1fr;
  }
  .ai-steps span,
  .ai-steps span:nth-child(even) {
    padding: 14px 0;
    border-right: 0;
  }
  .contact-copy {
    padding: 86px 18px;
  }
  .contact-side {
    min-height: 430px;
    padding: 55px 18px;
    gap: 45px;
  }
  .contact-side .logo-art {
    width: 112px;
  }
  .contact-process {
    width: min(210px, 58%);
  }
  .contact-process span {
    grid-template-columns: 24px 1fr;
    font-size: 7px;
  }
  .contact-side > .contact-access {
    grid-template-columns: 1fr;
  }
  .contact-access a {
    min-height: 64px;
    padding-inline: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .contact-access a:last-child {
    border-bottom: 0;
  }
  .contact-side > .contact-links {
    grid-template-columns: 1fr;
  }
  .contact-link,
  .contact-link-map,
  .contact-link-tiktok {
    grid-column: auto;
    min-height: 116px;
    padding-inline: 15px;
  }
  .contact-tagline {
    gap: 7px;
    font-size: 8px;
    letter-spacing: 0.025em;
  }
  footer {
    padding: 42px 18px;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  footer nav {
    flex-wrap: wrap;
    gap: 14px 24px;
  }
  footer p {
    justify-self: start;
  }
  .gallery-admin-shell {
    width: calc(100% - 36px);
    padding-top: 24px;
  }
  .gallery-admin-top {
    align-items: flex-start;
    flex-direction: column;
  }
  .gallery-admin-heading {
    padding: 70px 0 50px;
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .gallery-admin-heading h1 {
    font-size: clamp(55px, 17vw, 82px);
  }
  .gallery-admin-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .upload-form {
    position: static;
    padding: 24px 18px;
  }
  .uploaded-gallery > div:first-child {
    align-items: flex-start;
    flex-direction: column;
  }
  .uploaded-grid {
    grid-template-columns: 1fr;
  }
}

/* Autorski kreator personalizacji Ślad Studio */
.customizer-page {
  min-height: 100vh;
  margin-top: 0;
  color: #171719;
  background: #dedbd4;
}
.customizer-header {
  height: 74px;
  padding: 0 22px;
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: white;
  background: #09090a;
  border-bottom: 1px solid #2b2b2e;
}
.customizer-brand {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 18px;
  color: white;
  text-decoration: none;
}
.customizer-brand .portal-logo-art {
  width: 80px;
  height: 30px;
}
.customizer-brand b {
  padding-left: 18px;
  color: #939196;
  border-left: 1px solid #343438;
  font-size: 10px;
  font-weight: 620;
}
.customizer-header ol {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
}
.customizer-header li {
  min-width: 86px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #69676c;
}
.customizer-header li:not(:last-child)::after {
  content: "";
  width: 14px;
  height: 1px;
  position: absolute;
  left: calc(100% + 2px);
  background: #3b3a3e;
}
.customizer-header li b {
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  display: grid;
  place-items: center;
  border: 1px solid #3c3b3f;
  border-radius: 50%;
  font:
    700 9px var(--font-mono),
    monospace;
}
.customizer-header li span {
  color: inherit;
  font-family: var(--font-geist), Arial, sans-serif;
  font-size: 10px;
  font-weight: 650;
  white-space: nowrap;
}
.customizer-header li.is-done,
.customizer-header li.is-active {
  color: white;
}
.customizer-header li.is-done b {
  border-color: #7d7b80;
}
.customizer-header li.is-active b {
  background: var(--red);
  border-color: var(--red);
}
.customizer-cart-link {
  justify-self: end;
  color: white;
  text-decoration: none;
  font-size: 11px;
  font-weight: 720;
}
.customizer-cart-link span {
  margin-left: 15px;
  color: var(--red);
  font-size: 17px;
}
.customizer-workspace {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: 76px 310px minmax(420px, 1fr) 310px;
}
.customizer-tools {
  position: sticky;
  top: 74px;
  height: calc(100vh - 74px);
  display: grid;
  align-content: start;
  background: #111113;
  border-right: 1px solid #303034;
}
.customizer-tools button {
  min-height: 82px;
  padding: 12px 5px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  color: #817f84;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #2a2a2e;
  cursor: pointer;
}
.customizer-tools button:hover,
.customizer-tools button.is-active {
  color: white;
  background: #202023;
}
.customizer-tools button.is-active {
  box-shadow: inset 3px 0 0 var(--red);
}
.customizer-tools i {
  font-size: 20px;
  font-style: normal;
}
.customizer-tools span {
  font-size: 8px;
  font-weight: 670;
}
.customizer-panel {
  min-width: 0;
  background: #f4f1eb;
  border-right: 1px solid #c8c4bc;
}
.customizer-panel-head {
  padding: 27px 24px 24px;
  background: white;
  border-bottom: 1px solid #d8d4cd;
}
.customizer-panel-head small,
.customizer-summary small {
  color: var(--red);
  font:
    700 8px var(--font-mono),
    monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.customizer-panel-head h1 {
  margin: 9px 0 6px;
  font-size: 25px;
  line-height: 1;
  letter-spacing: -0.05em;
}
.customizer-panel-head p {
  margin: 0;
  color: #77736d;
  font-size: 10px;
}
.customizer-tool-content {
  padding: 24px;
  display: grid;
  gap: 15px;
  border-bottom: 1px solid #cfcbc4;
}
.customizer-tool-content h2,
.customizer-layers h2 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.04em;
}
.customizer-tool-content > p {
  margin: 0;
  color: #706c66;
  font-size: 11px;
  line-height: 1.55;
}
.customizer-tool-content > small {
  color: #8b8780;
  font-size: 9px;
  line-height: 1.5;
}
.customizer-tool-content label,
.customizer-summary label {
  display: grid;
  gap: 7px;
}
.customizer-tool-content label > span,
.customizer-summary label > span {
  color: #77736d;
  font:
    680 8px var(--font-mono),
    monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.customizer-tool-content textarea,
.customizer-tool-content select,
.customizer-summary select,
.customizer-summary input[type="number"] {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: #171719;
  background: white;
  border: 1px solid #c9c5be;
  border-radius: 2px;
  font:
    520 12px var(--font-geist),
    Arial,
    sans-serif;
}
.customizer-tool-content textarea {
  resize: vertical;
}
.customizer-inline-fields {
  display: grid;
  grid-template-columns: 1fr 70px;
  gap: 10px;
}
.customizer-inline-fields input[type="color"],
.customizer-transform input[type="color"] {
  width: 100%;
  min-height: 44px;
  padding: 4px;
  background: white;
  border: 1px solid #c9c5be;
}
.customizer-primary {
  min-height: 46px;
  padding: 0 15px;
  color: white;
  background: var(--red);
  border: 0;
  font-size: 10px;
  font-weight: 740;
  cursor: pointer;
}
.customizer-primary:hover {
  background: #c91428;
}
.customizer-drop {
  min-height: 150px;
  padding: 20px;
  place-content: center;
  justify-items: center;
  text-align: center;
  background: white;
  border: 1px dashed #aaa59c;
  cursor: pointer;
}
.customizer-drop input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.customizer-drop i {
  width: 38px;
  height: 38px;
  display: grid;
  place-content: center;
  color: white;
  background: var(--red);
  border-radius: 50%;
  font-size: 18px;
  font-style: normal;
}
.customizer-drop strong {
  font-size: 12px;
}
.customizer-drop > span {
  color: #8b8780 !important;
  font-family: var(--font-geist), Arial, sans-serif !important;
  font-size: 9px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}
.customizer-quality {
  padding: 11px;
  color: #5f5b55 !important;
  background: #e7e3dc;
  border-left: 2px solid var(--red);
}
.customizer-templates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.customizer-templates button {
  padding: 8px;
  display: grid;
  gap: 8px;
  color: #242225;
  background: white;
  border: 1px solid #d1cdc5;
  text-align: left;
  cursor: pointer;
}
.customizer-templates button:hover {
  border-color: var(--red);
}
.customizer-templates i {
  width: 100%;
  aspect-ratio: 1.35;
  display: block;
}
.customizer-templates span {
  font-size: 9px;
  font-weight: 670;
}
.customizer-ai-link {
  width: max-content;
  color: #242225;
  border-bottom: 1px solid var(--red);
  text-decoration: none;
  font-size: 10px;
  font-weight: 720;
}
.customizer-layers {
  padding: 22px 24px 35px;
}
.customizer-layers > div:first-child {
  margin-bottom: 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.customizer-layers > div:first-child span {
  color: var(--red);
  font:
    700 9px var(--font-mono),
    monospace;
}
.customizer-layers > p {
  color: #8b8780;
  font-size: 10px;
}
.customizer-layers > button {
  width: 100%;
  min-height: 48px;
  padding: 0 10px;
  display: grid;
  grid-template-columns: 25px 1fr auto;
  align-items: center;
  gap: 8px;
  color: #4e4a45;
  background: white;
  border: 1px solid #d4d0c9;
  border-bottom: 0;
  text-align: left;
  cursor: pointer;
}
.customizer-layers > button:last-child {
  border-bottom: 1px solid #d4d0c9;
}
.customizer-layers > button.is-active {
  position: relative;
  border-color: var(--red);
  box-shadow: inset 3px 0 0 var(--red);
}
.customizer-layers > button span,
.customizer-layers > button i {
  color: #99958e;
  font:
    700 7px var(--font-mono),
    monospace;
  font-style: normal;
}
.customizer-layers > button b {
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.customizer-stage-wrap {
  min-width: 0;
  padding: 18px;
  display: grid;
  grid-template-rows: auto minmax(480px, 1fr) auto;
  gap: 12px;
  background: #d8d5ce;
}
.customizer-stage-top,
.customizer-stage-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #5f5b55;
  font-size: 9px;
}
.customizer-stage-top button,
.customizer-stage-actions button {
  padding: 8px 10px;
  color: #5f5b55;
  background: transparent;
  border: 1px solid #aaa69e;
  font-size: 9px;
  cursor: pointer;
}
.customizer-live-dot {
  width: 7px;
  height: 7px;
  margin-right: 7px;
  display: inline-block;
  background: #25ad67;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(37, 173, 103, 0.12);
}
.customizer-stage {
  min-height: 0;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #c5c1ba;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}
.customizer-stage > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: contain;
  filter: saturate(0.92);
}
.customizer-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at center,
    transparent 32%,
    rgba(8, 8, 10, 0.12)
  );
}
.customizer-print-zone {
  width: min(34%, 260px);
  aspect-ratio: 0.82;
  position: absolute;
  z-index: 2;
  border: 1px dashed rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 999px rgba(7, 7, 8, 0.08);
}
.customizer-print-zone > span {
  padding: 5px 7px;
  position: absolute;
  z-index: 3;
  left: -1px;
  bottom: 100%;
  color: white;
  background: rgba(10, 10, 12, 0.72);
  font:
    700 7px var(--font-mono),
    monospace;
  white-space: nowrap;
}
.customizer-print-content {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.customizer-layer {
  width: max-content;
  max-width: 94%;
  padding: 0;
  position: absolute;
  z-index: 2;
  color: white;
  background: transparent;
  border: 0;
  cursor: pointer;
  line-height: 1;
  transform-origin: center;
}
.customizer-layer.is-selected {
  outline: 1px solid var(--red);
  outline-offset: 5px;
}
.customizer-layer-text {
  font-size: clamp(15px, 2.4vw, 36px);
  font-weight: 780;
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.45);
  white-space: nowrap;
}
.customizer-layer-image img {
  width: 120px;
  max-width: 100%;
  max-height: 120px;
  display: block;
  object-fit: contain;
}
.customizer-layer-template i {
  width: 115px;
  height: 115px;
  display: block;
}
.customizer-stage-actions span {
  max-width: 480px;
  text-align: right;
  line-height: 1.45;
}
.customizer-summary {
  min-width: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #f7f4ef;
  border-left: 1px solid #c8c4bc;
}
.customizer-summary > div {
  display: grid;
  gap: 13px;
}
.customizer-summary > div:not(:last-child) {
  padding-bottom: 24px;
  border-bottom: 1px solid #d0ccc5;
}
.customizer-transform label > span {
  display: flex;
  justify-content: space-between;
}
.customizer-transform input[type="range"] {
  width: 100%;
  accent-color: var(--red);
}
.customizer-remove {
  min-height: 38px;
  color: var(--red);
  background: transparent;
  border: 1px solid rgba(233, 32, 50, 0.35);
  font-size: 9px;
  cursor: pointer;
}
.customizer-placement-list {
  display: grid;
  gap: 7px;
}
.customizer-placement-list > button {
  min-height: 58px;
  padding: 6px;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 9px;
  color: #39363a;
  background: white;
  border: 1px solid #d1cdc5;
  text-align: left;
  cursor: pointer;
}
.customizer-placement-list > button:hover,
.customizer-placement-list > button.is-active {
  border-color: var(--red);
}
.customizer-placement-list > button.is-active {
  box-shadow: inset 3px 0 0 var(--red);
}
.customizer-placement-list img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  background: #cac6bf;
}
.customizer-placement-list span {
  min-width: 0;
  display: grid;
  gap: 3px;
}
.customizer-placement-list b {
  font-size: 10px;
}
.customizer-placement-list span small {
  overflow: hidden;
  color: #88847d;
  font:
    520 8px var(--font-geist),
    Arial,
    sans-serif;
  letter-spacing: 0;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap;
}
.customizer-placement-list i {
  color: var(--red);
  font:
    700 8px var(--font-mono),
    monospace;
  font-style: normal;
}
.customizer-order {
  margin-top: auto;
}
.customizer-order > p {
  margin: 0;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-block: 1px solid #d0ccc5;
}
.customizer-order > p span {
  color: #827e77;
  font-size: 9px;
}
.customizer-order > p strong {
  font-size: 11px;
}
.customizer-order > button {
  min-height: 54px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  background: var(--red);
  border: 0;
  font-size: 10px;
  font-weight: 760;
  cursor: pointer;
}
.customizer-order > button span {
  font-size: 17px;
}
.customizer-message {
  margin: 0;
  color: #5f5b55;
  font-size: 10px;
  line-height: 1.5;
}
.customizer-message a {
  color: var(--red);
  font-weight: 760;
}
.red-geometry {
  background: linear-gradient(
    135deg,
    #111 34%,
    var(--red) 35% 58%,
    #c9a45a 59% 66%,
    #111 67%
  );
}
.gold-wave {
  background:
    radial-gradient(ellipse at 80% 30%, #d3b56b 0 13%, transparent 14%),
    linear-gradient(155deg, #111 50%, #b89045 51% 63%, #111 64%);
}
.silver-line {
  background: linear-gradient(
    120deg,
    #111 35%,
    #d7d7d7 36% 39%,
    #111 40% 60%,
    #777 61% 66%,
    #111 67%
  );
}
.organic-mark {
  background:
    radial-gradient(circle at 34% 42%, var(--red) 0 18%, transparent 19%),
    radial-gradient(circle at 70% 66%, #c9a45a 0 15%, transparent 16%), #111;
}
.shop-product-image b {
  padding: 10px 12px;
  position: absolute;
  left: 16px;
  bottom: 16px;
  color: white;
  background: rgba(10, 10, 12, 0.84);
  border-left: 2px solid var(--red);
  font-size: 9px;
  font-weight: 720;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.shop-product-image:hover b {
  opacity: 1;
  transform: none;
}

/* Production mockups saved with the order */
.cart-item-preview {
  position: relative;
}
.cart-item-preview > img {
  width: 130px;
  height: 160px;
  display: block;
  object-fit: cover;
  background: #c5c1ba;
}
.cart-item-preview > span {
  position: absolute;
  left: 7px;
  bottom: 7px;
  padding: 5px 7px;
  color: white;
  background: rgba(8, 8, 10, 0.82);
  border-left: 2px solid var(--red);
  font:
    700 7px var(--font-mono),
    monospace;
  text-transform: uppercase;
}
.cart-placement-previews {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.cart-placement-previews figure {
  margin: 0;
  padding: 7px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 9px;
  background: #efebe4;
  border: 1px solid #d6d1c9;
}
.cart-placement-previews figure img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  background: #c5c1ba;
}
.cart-placement-previews figcaption {
  min-width: 0;
  display: grid;
  gap: 4px;
}
.cart-placement-previews figcaption strong {
  font-size: 9px;
}
.cart-placement-previews figcaption span {
  overflow: hidden;
  color: #7f7b74;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.commerce-success > .order-preview-files {
  width: 100%;
  margin: 18px 0 38px;
  padding: 30px 0;
  display: grid;
  gap: 22px;
  border-block: 1px solid var(--line);
}
.order-preview-files > div:first-child {
  display: grid;
  gap: 7px;
}
.order-preview-files > div:first-child small {
  color: var(--red);
  font:
    700 8px var(--font-mono),
    monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.order-preview-files h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.055em;
  text-transform: uppercase;
}
.order-preview-files > div:last-child {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.order-preview-files article {
  padding: 10px;
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 12px;
  align-items: center;
  background: white;
  border: 1px solid var(--line);
}
.order-preview-files article > img {
  width: 94px;
  height: 94px;
  object-fit: cover;
  background: #c5c1ba;
}
.order-preview-files article > div {
  min-width: 0;
  display: grid;
  gap: 5px;
}
.order-preview-files article strong {
  font-size: 11px;
}
.order-preview-files article span {
  color: var(--muted);
  font-size: 9px;
}
.order-preview-files article a {
  width: max-content;
  margin-top: 5px;
  color: var(--red);
  border-bottom: 1px solid rgba(233, 32, 50, 0.35);
  text-decoration: none;
  font-size: 9px;
  font-weight: 720;
}

@media (max-width: 1250px) {
  .customizer-workspace {
    grid-template-columns: 70px 280px minmax(380px, 1fr);
  }
  .customizer-summary {
    grid-column: 2 / 4;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-top: 1px solid #c8c4bc;
    border-left: 0;
  }
  .customizer-summary > div:not(:last-child) {
    padding: 0 20px 0 0;
    border-right: 1px solid #d0ccc5;
    border-bottom: 0;
  }
}

@media (max-width: 850px) {
  .customizer-header {
    height: 66px;
    grid-template-columns: 1fr auto;
  }
  .customizer-brand b,
  .customizer-header ol {
    display: none;
  }
  .customizer-workspace {
    min-height: calc(100vh - 66px);
    display: flex;
    flex-direction: column;
  }
  .customizer-tools {
    height: auto;
    position: sticky;
    z-index: 20;
    top: 66px;
    grid-template-columns: repeat(4, 1fr);
    border-right: 0;
  }
  .customizer-tools button {
    min-height: 64px;
    border-right: 1px solid #2a2a2e;
    border-bottom: 0;
  }
  .customizer-tools button.is-active {
    box-shadow: inset 0 -3px 0 var(--red);
  }
  .customizer-panel {
    border-right: 0;
  }
  .customizer-panel-head {
    padding: 22px 18px;
  }
  .customizer-tool-content,
  .customizer-layers {
    padding-inline: 18px;
  }
  .customizer-stage-wrap {
    min-height: 620px;
    padding: 12px;
    grid-template-rows: auto 520px auto;
    order: -1;
  }
  .customizer-stage-wrap {
    order: 0;
  }
  .customizer-stage {
    min-height: 520px;
  }
  .customizer-print-zone {
    width: min(42%, 210px);
  }
  .customizer-summary {
    display: flex;
    padding: 28px 18px;
  }
  .customizer-summary > div:not(:last-child) {
    padding: 0 0 24px;
    border-right: 0;
    border-bottom: 1px solid #d0ccc5;
  }
  .customizer-stage-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .customizer-stage-actions span {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .customizer-header {
    padding-inline: 15px;
  }
  .customizer-brand .portal-logo-art {
    width: 67px;
  }
  .customizer-stage-wrap {
    min-height: 510px;
    grid-template-rows: auto 420px auto;
  }
  .customizer-stage {
    min-height: 420px;
  }
  .customizer-print-zone {
    width: 46%;
  }
  .customizer-layer-template i {
    width: 85px;
    height: 85px;
  }
  .customizer-layer-image img {
    width: 90px;
    max-height: 90px;
  }
  .customizer-templates {
    grid-template-columns: 1fr 1fr;
  }
  .customizer-tool-content {
    padding-block: 21px;
  }
}

@media (max-width: 1050px) {
  .shop-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .shop-account-grid {
    grid-template-columns: 1fr;
  }
  .shop-account-grid > a,
  .shop-account-grid > a:first-child,
  .shop-account-grid > a:last-child {
    min-height: 300px;
    padding: 34px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
  .shop-account-grid > a:last-child {
    border-bottom: 0;
  }
  .shop-account-grid h3 {
    margin-top: 58px;
  }
  .shop-business-band > div,
  .shop-faq {
    grid-template-columns: 1fr;
  }
  .shop-business-band > div,
  .shop-faq {
    gap: 60px;
  }
}

@media (max-width: 720px) {
  .shop-page .portal-hero-shop > img {
    object-position: 64% center;
  }
  .shop-quickbar {
    overflow-x: auto;
  }
  .shop-quickbar > div {
    width: max-content;
    grid-template-columns: repeat(4, 170px);
  }
  .shop-quickbar a,
  .shop-quickbar a:first-child {
    min-height: 62px;
    padding: 0 16px;
  }
  .shop-quickbar a:hover {
    padding-left: 18px;
  }
  .shop-intro {
    padding-bottom: 70px;
  }
  .shop-catalog {
    padding: 84px 0 92px;
    scroll-margin-top: 68px;
  }
  .shop-catalog-heading h2 {
    font-size: clamp(45px, 13vw, 65px);
  }
  .shop-filters {
    margin-top: 42px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .shop-filters button {
    flex: 0 0 auto;
  }
  .shop-product-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .shop-product-image {
    aspect-ratio: 4 / 4.8;
  }
  .shop-product-copy h3 {
    font-size: 25px;
  }
  .shop-catalog-more {
    margin-top: 54px;
    align-items: stretch;
    flex-direction: column;
  }
  .shop-catalog-more .btn {
    width: 100%;
  }
  .shop-account-section {
    padding: 84px 0 92px;
  }
  .shop-account-grid {
    margin-top: 42px;
  }
  .shop-account-grid > a,
  .shop-account-grid > a:first-child,
  .shop-account-grid > a:last-child {
    min-height: 285px;
  }
  .shop-ai-board {
    min-height: 380px;
    padding: 24px 20px;
  }
  .shop-ai-board > strong {
    font-size: 27px;
  }
  .shop-ai-board > div {
    grid-template-columns: 1fr;
  }
  .shop-ai-board span,
  .shop-ai-board span:nth-child(even) {
    padding: 12px 0;
    border-left: 0;
  }
  .shop-process {
    padding-bottom: 84px;
  }
  .shop-business-band {
    padding: 84px 0;
  }
  .shop-business-band h2 {
    font-size: clamp(45px, 13vw, 65px);
  }
  .shop-business-links a {
    min-height: 100px;
    grid-template-columns: 1fr 28px;
    gap: 8px 18px;
  }
  .shop-business-links small {
    grid-column: 1;
  }
  .shop-business-links i {
    grid-column: 2;
    grid-row: 1 / 3;
  }
  .shop-service-info {
    padding-block: 84px;
    grid-template-columns: 1fr;
  }
  .shop-service-info article,
  .shop-service-info article:first-child,
  .shop-service-info article:last-child {
    min-height: 0;
    padding: 28px 0 34px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .shop-service-info article:last-child {
    border-bottom: 0;
  }
  .shop-service-info h3 {
    margin-top: 44px;
  }
  .shop-faq {
    padding-block: 84px;
    gap: 48px;
  }
  .shop-faq h2 {
    font-size: clamp(45px, 13vw, 65px);
  }
  .shop-faq-list summary {
    min-height: 82px;
    grid-template-columns: 28px 1fr 20px;
    gap: 12px;
    font-size: 15px;
  }
  .shop-faq-list details p {
    padding: 0 20px 24px 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .intro {
    display: none;
  }
  :root {
    --header-show: 1;
  }
  .marquee div {
    animation: none;
  }
  .custom-cursor {
    display: none;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Commerce responsive completion */
.shop-quickbar > div {
  grid-template-columns: repeat(5, 1fr);
}
.shop-account-grid {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1050px) {
  .shop-config-modal {
    grid-template-columns: 1fr;
  }
  .shop-config-product {
    display: grid;
    grid-template-columns: minmax(220px, 0.7fr) 1fr;
    gap: 30px;
    align-items: end;
  }
  .shop-config-product img {
    margin: 0;
  }
  .cart-layout,
  .auction-form-layout {
    grid-template-columns: 1fr;
  }
  .checkout-form,
  .auction-form-help {
    position: static;
  }
  .commerce-heading,
  .auction-form-heading {
    grid-template-columns: 1fr;
  }
  .commerce-heading h1,
  .auction-form-heading h1 {
    grid-column: auto;
  }
  .account-hero {
    grid-template-columns: 1fr;
  }
  .account-actions {
    min-width: 0;
  }
  .account-auctions,
  .auction-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .commerce-page,
  .account-page,
  .auction-page,
  .auction-form-page {
    padding-top: 68px;
  }
  .shop-quickbar > div {
    grid-template-columns: repeat(5, 170px);
  }
  .shop-config-overlay {
    padding: 0;
  }
  .shop-config-modal {
    width: 100%;
    min-height: 100vh;
    max-height: 100vh;
  }
  .shop-config-product {
    padding: 68px 18px 25px;
    display: block;
  }
  .shop-config-product img {
    max-height: 330px;
    margin-bottom: 24px;
    object-position: center;
  }
  .shop-config-form {
    padding: 30px 18px 45px;
  }
  .ready-designs {
    grid-template-columns: 1fr;
  }
  .shop-catalog-more > div {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .shop-catalog-more > div .btn {
    width: 100%;
  }
  .commerce-heading,
  .auction-form-heading {
    padding-block: 76px 50px;
    gap: 28px;
  }
  .commerce-heading h1,
  .account-hero h1,
  .auction-form-heading h1 {
    font-size: clamp(48px, 14vw, 68px);
  }
  .cart-layout,
  .auction-form-layout {
    padding-bottom: 85px;
    gap: 55px;
  }
  .cart-item {
    grid-template-columns: 80px 1fr;
    gap: 16px;
  }
  .cart-item-preview > img {
    width: 80px;
    height: 100px;
  }
  .cart-placement-previews {
    grid-template-columns: 1fr;
  }
  .cart-quantity {
    grid-column: 2;
    justify-self: start;
  }
  .order-preview-files > div:last-child {
    grid-template-columns: 1fr;
  }
  .checkout-form {
    margin-inline: -18px;
    padding: 30px 18px;
  }
  .checkout-grid,
  .delivery-options {
    grid-template-columns: 1fr;
  }
  .account-stats {
    grid-template-columns: 1fr;
  }
  .account-table article {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 0;
  }
  .account-auctions,
  .auction-grid {
    grid-template-columns: 1fr;
  }
  .auction-hero {
    min-height: 700px;
    padding-top: 68px;
  }
  .auction-hero h1 {
    font-size: clamp(54px, 15vw, 76px);
  }
  .auction-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .auction-filters {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .auction-rules {
    align-items: flex-start;
    flex-direction: column;
  }
  .sale-mode,
  .auction-price-fields {
    grid-template-columns: 1fr;
  }
  .auction-create-form > fieldset {
    padding: 26px 18px;
  }
  .auction-form-help {
    margin-inline: -18px;
    padding: 34px 18px;
  }
}
.site-error {
  min-height: 100vh;
  display: grid;
  place-content: center;
  gap: 18px;
  padding: 24px;
  background: #090909;
  color: #f4f1e9;
  text-align: center;
}
.site-error > * {
  margin: 0;
}
.site-error-mark {
  color: #e5b85c;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
}
.site-error h1 {
  max-width: 760px;
  font-size: clamp(42px, 8vw, 94px);
  line-height: 0.9;
  letter-spacing: -0.06em;
}
.site-error p {
  max-width: 560px;
  margin-inline: auto;
  color: #aaa;
}
.site-error div {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.site-error button,
.site-error a {
  border: 1px solid #303030;
  border-radius: 999px;
  padding: 14px 22px;
  color: white;
  background: transparent;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.site-error button {
  border-color: #ed1b2f;
  background: #ed1b2f;
}

/* Pricing, payment and promotion */
.shop-product-price {
  margin: 18px 0 4px;
  padding: 14px 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 15px;
  border-block: 1px solid var(--line);
}
.shop-product-price span {
  color: var(--muted);
  font-size: 10px;
}
.shop-product-price b {
  color: var(--ink);
  font-size: 19px;
  letter-spacing: -0.04em;
}
.shop-product-price em {
  color: var(--red);
  font:
    680 8px var(--font-mono),
    monospace;
  font-style: normal;
  text-transform: uppercase;
}
.shop-promotion-bar {
  margin: 0 0 50px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  color: white;
  background: var(--ink);
}
.shop-promotion-bar span {
  padding: 8px 10px;
  color: white;
  background: var(--red);
  font:
    760 9px var(--font-mono),
    monospace;
  letter-spacing: 0.08em;
}
.shop-promotion-bar strong {
  font-size: 14px;
}
.shop-promotion-bar b {
  color: var(--gold);
  font-size: 24px;
}
.checkout-payment {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border: 0;
}
.checkout-payment legend {
  margin-bottom: 10px;
  color: #8e8c90;
  font:
    650 8px var(--font-mono),
    monospace;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.checkout-payment label {
  padding: 12px 9px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border: 1px solid #343438;
  cursor: pointer;
}
.checkout-payment label.is-active {
  border-color: var(--red);
  background: rgba(233, 32, 50, 0.08);
}
.checkout-payment input {
  width: auto;
  min-height: 0;
  margin-top: 2px;
  accent-color: var(--red);
}
.checkout-payment label > span {
  display: grid;
  gap: 4px;
  color: white;
  text-transform: none;
}
.checkout-payment strong {
  font-size: 10px;
}
.checkout-payment small {
  color: #7f7d82;
  font-size: 8px;
  line-height: 1.35;
}
.payment-ready {
  padding: 14px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  color: white;
  background: #171719;
  border: 1px solid #343438;
}
.payment-ready > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #18864b;
}
.payment-ready > div {
  display: grid;
  gap: 3px;
}
.payment-ready small {
  color: #88868b;
  font-size: 8px;
  text-transform: uppercase;
}
.payment-ready strong {
  font-size: 12px;
}
.payment-ready p {
  margin: 3px 0 0;
  color: #929095;
  font-size: 9px;
  line-height: 1.45;
}
.checkout-form .btn-payment { width: 100%; color: #0b0b0c; background: var(--gold); }.checkout-form .btn-payment:hover { background: #dfc276; }.payment-setup-note { margin: 0; padding: 11px 13px; color: #b2afb5; background: rgba(201,164,90,.09); border: 1px solid rgba(201,164,90,.3); font-size: 9px; line-height: 1.55; }

/* Newsletter */
.newsletter-section {
  padding: 105px 0;
  color: white;
  background: #0a0a0b;
}
.newsletter-section > div {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: center;
}
.newsletter-section h2 {
  margin: 25px 0;
  font-size: clamp(52px, 6vw, 92px);
  line-height: 0.88;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}
.newsletter-section h2 em {
  color: var(--red);
  font-style: normal;
}
.newsletter-section > div > div > p:last-child {
  max-width: 540px;
  color: #99979b;
  font-size: 14px;
  line-height: 1.7;
}
.newsletter-section form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.newsletter-section label {
  display: grid;
  gap: 8px;
}
.newsletter-section label > span {
  color: #858388;
  font:
    650 8px var(--font-mono),
    monospace;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.newsletter-section input,
.newsletter-section select {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  color: white;
  background: #171719;
  border: 1px solid #343438;
  font: inherit;
}
.newsletter-section form > label:nth-child(3) {
  grid-column: 1 / -1;
}
.newsletter-section .newsletter-consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #858388;
  font-size: 9px;
  line-height: 1.45;
}
.newsletter-consent input {
  width: auto;
  min-height: 0;
  accent-color: var(--red);
}
.newsletter-section button {
  min-height: 54px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  background: var(--red);
  border: 0;
  font-weight: 750;
  cursor: pointer;
}
.newsletter-section form > p {
  margin: 0;
  align-self: center;
  color: #bdbabe;
  font-size: 10px;
  line-height: 1.5;
}

/* Quote calculator */
.quote-page {
  min-height: 100vh;
  padding-top: 76px;
  background: var(--paper-light);
}
.quote-hero {
  padding-block: 110px 70px;
}
.quote-hero h1 {
  margin: 28px 0;
  font-size: clamp(64px, 8vw, 124px);
  line-height: 0.85;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}
.quote-hero h1 em {
  color: var(--red);
  font-style: normal;
}
.quote-hero > p:last-child {
  max-width: 690px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.quote-calculator {
  padding-bottom: 130px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 24px;
  align-items: start;
}
.quote-form {
  padding: 42px;
  display: grid;
  gap: 22px;
  background: white;
  border: 1px solid var(--line);
}
.quote-step {
  display: flex;
  align-items: center;
  gap: 16px;
}
.quote-step > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 50%;
  background: var(--red);
  font-size: 11px;
}
.quote-step h2 {
  margin: 0;
  font-size: 33px;
  letter-spacing: -0.05em;
}
.quote-form > label,
.quote-inline label {
  display: grid;
  gap: 8px;
}
.quote-form label > span {
  color: #77736d;
  font:
    650 8px var(--font-mono),
    monospace;
  text-transform: uppercase;
}
.quote-form input,
.quote-form select {
  width: 100%;
  min-height: 50px;
  padding: 0 13px;
  background: var(--paper-light);
  border: 1px solid var(--line);
  font: inherit;
}
.quote-inline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.quote-form fieldset {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border: 0;
}
.quote-form legend {
  margin-bottom: 8px;
  color: #77736d;
  font:
    650 8px var(--font-mono),
    monospace;
  text-transform: uppercase;
}
.quote-form fieldset label {
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  font-size: 10px;
  cursor: pointer;
}
.quote-form fieldset label.is-active {
  border-color: var(--red);
}
.quote-form fieldset input {
  width: auto;
  min-height: 0;
  accent-color: var(--red);
}
.quote-calculator > aside {
  position: sticky;
  top: 100px;
  padding: 45px;
  display: grid;
  gap: 18px;
  color: white;
  background: var(--ink);
}
.quote-calculator aside > small {
  margin-top: 18px;
  color: #8b898e;
  font-size: 10px;
}
.quote-calculator aside > strong {
  color: var(--gold);
  font-size: clamp(52px, 6vw, 90px);
  letter-spacing: -0.065em;
  line-height: 0.9;
}
.quote-calculator dl {
  margin: 15px 0;
  display: grid;
}
.quote-calculator dl div {
  padding: 13px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #2d2d31;
}
.quote-calculator dt {
  color: #8b898e;
  font-size: 10px;
}
.quote-calculator dd {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  text-align: right;
}
.quote-calculator aside > p {
  color: #8b898e;
  font-size: 10px;
  line-height: 1.6;
}
.quote-calculator aside > a {
  min-height: 56px;
  padding: 0 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  background: var(--red);
  text-decoration: none;
  font-size: 11px;
  font-weight: 750;
}

/* Unified admin */
.admin-denied {
  min-height: 100vh;
  padding: 30px;
  display: grid;
  place-content: center;
  justify-items: start;
  gap: 18px;
  color: white;
  background: #09090a;
}
.admin-denied span {
  color: var(--gold);
  font:
    750 11px var(--font-mono),
    monospace;
  letter-spacing: 0.16em;
}
.admin-denied h1 {
  margin: 0;
  font-size: clamp(50px, 8vw, 105px);
  letter-spacing: -0.07em;
}
.admin-denied p {
  max-width: 620px;
  color: #aaa;
  line-height: 1.7;
}
.admin-denied a {
  padding: 14px 20px;
  color: white;
  background: var(--red);
  text-decoration: none;
  font-weight: 750;
}
.admin-shell {
  --admin-line: #dedbd4;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 260px 1fr;
  background: #f4f1eb;
  color: #111114;
}
.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 25px 18px 20px;
  display: flex;
  flex-direction: column;
  color: white;
  background: #0a0a0b;
}
.admin-brand {
  padding: 4px 8px 26px;
  display: grid;
  gap: 12px;
  color: white;
  border-bottom: 1px solid #2b2b2e;
  text-decoration: none;
}
.admin-brand .portal-logo-art {
  width: 91px;
}
.admin-brand b {
  color: #7d7b80;
  font:
    650 8px var(--font-mono),
    monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.admin-sidebar nav {
  padding: 18px 0;
  display: grid;
  gap: 3px;
}
.admin-sidebar nav button {
  min-height: 43px;
  padding: 0 11px;
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 7px;
  color: #9c9a9f;
  background: transparent;
  border: 0;
  border-radius: 2px;
  font:
    650 11px var(--font-geist),
    Arial,
    sans-serif;
  text-align: left;
  cursor: pointer;
}
.admin-sidebar nav button span {
  color: #59575c;
  font:
    650 8px var(--font-mono),
    monospace;
}
.admin-sidebar nav button:hover,
.admin-sidebar nav button.is-active {
  color: white;
  background: #1b1b1e;
}
.admin-sidebar nav button.is-active span {
  color: var(--red);
}
.admin-sidebar > div {
  margin-top: auto;
  padding: 17px 8px 0;
  display: grid;
  gap: 6px;
  border-top: 1px solid #2b2b2e;
}
.admin-sidebar > div small {
  color: #67656a;
  font-size: 8px;
  text-transform: uppercase;
}
.admin-sidebar > div strong {
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
}
.admin-sidebar > div a {
  margin-top: 8px;
  color: #aaa8ad;
  font-size: 9px;
}
.admin-main {
  min-width: 0;
  padding: 34px 42px 80px;
}
.admin-main > header {
  min-height: 100px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid var(--admin-line);
}
.admin-main > header p {
  margin: 0 0 8px;
  color: #8b877f;
  font:
    700 8px var(--font-mono),
    monospace;
  letter-spacing: 0.11em;
}
.admin-main > header h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 0.9;
  letter-spacing: -0.065em;
}
.admin-main > header > div:last-child {
  display: flex;
  gap: 8px;
}
.admin-main > header a,
.admin-section-head > a {
  padding: 11px 14px;
  color: #111;
  border: 1px solid var(--admin-line);
  text-decoration: none;
  font-size: 9px;
  font-weight: 700;
}
.admin-notice {
  position: sticky;
  z-index: 30;
  top: 12px;
  margin: 15px 0 0 auto;
  width: max-content;
  max-width: 100%;
  padding: 11px 15px;
  color: white;
  background: #202024;
  border-left: 3px solid var(--red);
  font-size: 10px;
}
.admin-loading {
  padding: 80px 0;
  color: #777;
}
.admin-dashboard {
  padding-top: 38px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.admin-stat-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.admin-stat-grid article,
.admin-segment-grid article {
  min-height: 150px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: white;
  border: 1px solid var(--admin-line);
}
.admin-stat-grid span,
.admin-segment-grid span {
  font-size: 50px;
  font-weight: 750;
  letter-spacing: -0.06em;
}
.admin-stat-grid p,
.admin-segment-grid p {
  margin: 0;
  color: #77736c;
  font-size: 10px;
  text-transform: uppercase;
}
.admin-card {
  min-height: 290px;
  padding: 30px;
  background: white;
  border: 1px solid var(--admin-line);
}
.admin-card small,
.admin-section-head small {
  color: var(--red);
  font:
    700 8px var(--font-mono),
    monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.admin-card h2,
.admin-section-head h2 {
  margin: 9px 0 0;
  font-size: 33px;
  line-height: 0.95;
  letter-spacing: -0.055em;
}
.admin-card ul {
  margin: 45px 0 0;
  padding: 0;
  display: grid;
  list-style: none;
}
.admin-card li {
  padding: 13px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--admin-line);
  font-size: 11px;
}
.admin-card li span {
  width: 28px;
  color: var(--red);
  font-weight: 800;
}
.admin-card-dark {
  color: white;
  background: #101012;
  border-color: #101012;
}
.admin-quick-actions {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.admin-quick-actions button {
  min-height: 58px;
  padding: 12px;
  color: white;
  background: #1b1b1f;
  border: 1px solid #2c2c31;
  text-align: left;
  cursor: pointer;
}
.admin-quick-actions button:hover {
  border-color: var(--red);
}
.admin-form {
  margin-top: 34px;
}
.admin-section-head {
  min-height: 78px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 25px;
}
.admin-section-head > button,
.admin-section-head > span,
.admin-form button,
.admin-upload button {
  min-height: 42px;
  padding: 0 16px;
  color: white;
  background: var(--red);
  border: 0;
  font:
    720 9px var(--font-geist),
    Arial,
    sans-serif;
  cursor: pointer;
}
.admin-section-head > span {
  display: grid;
  place-items: center;
  background: #171719;
}
.admin-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.admin-fields label,
.admin-upload label,
.admin-calculator label,
.admin-email-grid label,
.admin-promo-form label {
  padding: 17px;
  display: grid;
  gap: 8px;
  background: white;
  border: 1px solid var(--admin-line);
}
.admin-fields label > span,
.admin-upload label > span,
.admin-calculator label > span,
.admin-email-grid label > span,
.admin-promo-form label > span,
.admin-product-list label > span {
  color: #77736c;
  font:
    650 8px var(--font-mono),
    monospace;
  text-transform: uppercase;
}
.admin-fields input,
.admin-fields textarea,
.admin-upload input,
.admin-product-list input,
.admin-product-list textarea,
.admin-product-list select,
.admin-order-list select,
.admin-calculator input,
.admin-calculator select,
.admin-email-grid input,
.admin-email-grid textarea,
.admin-promo-form input,
.admin-promo-form select {
  width: 100%;
  padding: 10px 11px;
  background: #f8f6f2;
  border: 1px solid var(--admin-line);
  font:
    520 11px var(--font-geist),
    Arial,
    sans-serif;
}
.admin-fields textarea,
.admin-product-list textarea,
.admin-email-grid textarea {
  resize: vertical;
}
.admin-fields input[type="color"] {
  height: 58px;
  padding: 5px;
}
.admin-product-list {
  display: grid;
  gap: 8px;
}
.admin-product-list article {
  padding: 12px;
  display: grid;
  grid-template-columns: 90px minmax(220px, 1.3fr) minmax(110px, 0.45fr) minmax(
      160px,
      0.7fr
    ) 75px;
  gap: 14px;
  align-items: center;
  background: white;
  border: 1px solid var(--admin-line);
}
.admin-product-list article > img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  background: #171719;
}
.admin-product-list article > div:nth-child(2) {
  display: grid;
  gap: 6px;
}
.admin-product-list article small {
  color: var(--red);
  font:
    650 7px var(--font-mono),
    monospace;
}
.admin-product-list article label {
  display: grid;
  gap: 7px;
}
.admin-product-list label > div {
  display: grid;
  grid-template-columns: 1fr 27px;
  align-items: center;
}
.admin-product-list label > div b {
  font-size: 9px;
  text-align: center;
}
.admin-product-list .admin-switch {
  display: flex;
  align-items: center;
}
.admin-switch input {
  width: auto;
  accent-color: var(--red);
}
.admin-upload {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 9px;
  align-items: stretch;
}
.admin-upload button {
  align-self: stretch;
}
.admin-media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.admin-media-grid article {
  background: white;
  border: 1px solid var(--admin-line);
}
.admin-media-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.admin-media-grid article > div {
  padding: 11px;
  display: grid;
  gap: 8px;
}
.admin-media-grid strong {
  font-size: 10px;
}
.admin-media-grid button {
  min-height: 30px;
  width: max-content;
  padding: 0;
  color: var(--red);
  background: transparent;
}
.admin-order-list {
  display: grid;
  gap: 7px;
}
.admin-order-list form {
  padding: 14px;
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.65fr 0.65fr auto;
  gap: 12px;
  align-items: center;
  background: white;
  border: 1px solid var(--admin-line);
}
.admin-order-list form > div {
  display: grid;
  gap: 4px;
}
.admin-order-list small {
  color: #88847d;
  font-size: 8px;
}
.admin-order-list strong {
  font-size: 11px;
}
.admin-order-list span {
  color: #716d66;
  font-size: 9px;
}
.admin-order-list button {
  min-height: 38px;
}
.admin-calculator {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 14px;
}
.admin-calculator > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.admin-calculator > div label:first-child,
.admin-calculator > div label:last-child {
  grid-column: 1 / -1;
}
.admin-calculator > aside {
  padding: 32px;
  display: grid;
  align-content: center;
  gap: 13px;
  color: white;
  background: #111114;
}
.admin-calculator aside > small {
  color: #8e8b90;
}
.admin-calculator aside > strong {
  color: var(--gold);
  font-size: 58px;
  letter-spacing: -0.065em;
}
.admin-calculator aside p {
  color: #929095;
  font-size: 10px;
  line-height: 1.6;
}
.admin-email-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.admin-email-grid form {
  padding: 24px;
  display: grid;
  gap: 10px;
  background: white;
  border: 1px solid var(--admin-line);
}
.admin-mail-brand {
  padding: 18px;
  color: white;
  background: #0d0d0f;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.admin-email-grid form > input {
  font-size: 18px;
  font-weight: 750;
}
.admin-email-grid form > small {
  color: #88847d;
  font-size: 8px;
}
.admin-promo-form {
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: 0.45fr 1fr 0.35fr 0.55fr 0.55fr;
  gap: 8px;
}
.admin-promo-description {
  grid-column: 1 / -2;
}
.admin-promo-form > button {
  align-self: stretch;
}
.admin-promo-list {
  display: grid;
  gap: 7px;
}
.admin-promo-list article {
  padding: 14px;
  display: grid;
  grid-template-columns: 90px 1fr 70px 90px auto;
  gap: 13px;
  align-items: center;
  background: white;
  border: 1px solid var(--admin-line);
  opacity: 0.55;
}
.admin-promo-list article.is-active {
  opacity: 1;
  border-left: 3px solid var(--red);
}
.admin-promo-list article > span {
  padding: 7px;
  color: white;
  background: #171719;
  font:
    750 9px var(--font-mono),
    monospace;
  text-align: center;
}
.admin-promo-list article p {
  margin: 4px 0 0;
  color: #777;
  font-size: 9px;
}
.admin-promo-list article > b {
  color: var(--red);
  font-size: 20px;
}
.admin-promo-list article > small {
  font-size: 8px;
}
.admin-promo-list button {
  min-height: 34px;
}
.admin-segment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}
.admin-subscriber-list {
  margin-top: 20px;
  display: grid;
}
.admin-subscriber-list article {
  padding: 13px 0;
  display: grid;
  grid-template-columns: 1fr 110px 90px;
  gap: 15px;
  align-items: center;
  border-bottom: 1px solid var(--admin-line);
}
.admin-subscriber-list article > div {
  display: grid;
  gap: 4px;
}
.admin-subscriber-list strong {
  font-size: 11px;
}
.admin-subscriber-list span,
.admin-subscriber-list small {
  color: #777;
  font-size: 9px;
}
.admin-subscriber-list b {
  font-size: 9px;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .admin-shell {
    grid-template-columns: 210px 1fr;
  }
  .admin-main {
    padding-inline: 25px;
  }
  .admin-product-list article {
    grid-template-columns: 75px 1fr 120px;
  }
  .admin-product-list article > img {
    width: 75px;
    height: 75px;
  }
  .admin-product-list article > label:nth-last-child(-n + 2) {
    grid-column: auto;
  }
  .admin-order-list form {
    grid-template-columns: 1fr 1fr;
  }
  .admin-order-list form button {
    justify-self: start;
  }
  .admin-media-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 760px) {
  .checkout-payment,
  .quote-form fieldset {
    grid-template-columns: 1fr;
  }
  .shop-promotion-bar {
    grid-template-columns: 1fr auto;
  }
  .shop-promotion-bar strong {
    grid-column: 1 / -1;
    grid-row: 2;
  }
  .newsletter-section > div,
  .quote-calculator {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .newsletter-section form,
  .admin-fields,
  .admin-email-grid {
    grid-template-columns: 1fr;
  }
  .quote-page {
    padding-top: 68px;
  }
  .quote-hero {
    padding-block: 85px 55px;
  }
  .quote-inline {
    grid-template-columns: 1fr;
  }
  .quote-form {
    padding: 24px 18px;
  }
  .quote-calculator > aside {
    position: static;
    padding: 30px 20px;
  }
  .admin-shell {
    display: block;
  }
  .admin-sidebar {
    height: auto;
    position: static;
    padding: 15px;
  }
  .admin-brand {
    padding-bottom: 14px;
  }
  .admin-sidebar nav {
    display: flex;
    overflow-x: auto;
  }
  .admin-sidebar nav button {
    flex: 0 0 145px;
  }
  .admin-sidebar > div {
    display: none;
  }
  .admin-main {
    padding: 25px 16px 65px;
  }
  .admin-main > header {
    min-height: 125px;
    flex-direction: column;
  }
  .admin-dashboard {
    grid-template-columns: 1fr;
  }
  .admin-stat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .admin-card {
    min-height: 0;
  }
  .admin-product-list article {
    grid-template-columns: 70px 1fr;
  }
  .admin-product-list article > label {
    grid-column: 1 / -1;
  }
  .admin-upload,
  .admin-calculator,
  .admin-promo-form {
    grid-template-columns: 1fr;
  }
  .admin-media-grid {
    grid-template-columns: 1fr 1fr;
  }
  .admin-order-list form {
    grid-template-columns: 1fr;
  }
  .admin-calculator > div {
    grid-template-columns: 1fr;
  }
  .admin-calculator > div label:first-child,
  .admin-calculator > div label:last-child {
    grid-column: auto;
  }
  .admin-promo-description {
    grid-column: auto;
  }
  .admin-promo-list article {
    grid-template-columns: 80px 1fr;
  }
  .admin-promo-list article > b,
  .admin-promo-list article > small,
  .admin-promo-list article > button {
    justify-self: start;
  }
  .admin-segment-grid {
    grid-template-columns: 1fr;
  }
  .admin-subscriber-list article {
    grid-template-columns: 1fr;
  }
}

/*firma-blok-css*/
.footer-firma{margin:1.4rem 0;font-size:.82rem;line-height:1.65;opacity:.82}
.footer-firma .ff-nazwa{font-weight:600;opacity:1;margin-bottom:.2rem}
.footer-firma p{margin:.15rem 0}
.footer-firma a{color:inherit;text-decoration:underline}

/*firma-blok-fix*/
footer .footer-firma{grid-column:1 / -1;order:9;max-width:none;border-top:1px solid rgba(130,130,130,.18);padding-top:1.05rem;margin:1.3rem 0 0}

/*firma-fix2*/
footer .footer-firma{text-align:left}

/*kontakt-fix1 2026-08-24 — formularz „Napisz do nas": naprawa układu (klasa .checkout-summary ze sklepu ściskała formularz)*/
.checkout-summary:has(#kontaktForm){display:block;grid-template-columns:none;padding:0;border:0;background:transparent}
.checkout-summary:has(#kontaktForm) > p{max-width:none;margin:10px 0 22px}
#kontaktForm{display:block;width:100%;padding:34px 30px;background:#0d0d0f;border:1px solid #232327;border-radius:4px}
#kontaktForm .checkout-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;width:100%}
#kontaktForm .checkout-grid label{display:grid;gap:8px;min-width:0}
#kontaktForm .checkout-grid label.wide{grid-column:1 / -1}
#kontaktForm input,#kontaktForm select,#kontaktForm textarea{width:100%;box-sizing:border-box}
#kontaktForm select{color:white;background:#171719;border-color:#343438}
#kontaktForm .checkout-consent{margin:16px 0 0}
#kontaktForm .checkout-error{margin-top:14px}
#kontaktForm .checkout-error:empty{display:none}
#kontaktForm > .btn{width:100%;justify-content:center;margin-top:18px}
#kontaktForm .checkout-hint{margin:16px 0 0}
@media (max-width:720px){
  #kontaktForm{padding:24px 18px}
  #kontaktForm .checkout-grid{grid-template-columns:1fr}
}
#kontaktForm .checkout-consent{display:block!important;position:relative;padding-left:28px;line-height:1.65}
#kontaktForm .checkout-consent input{position:absolute;left:0;top:3px;width:auto;min-height:0}

/*kreator-fix1 — zawijanie tekstu + przeciąganie warstw*/
.customizer-layer-text{white-space:pre-wrap;overflow-wrap:break-word;text-align:center;line-height:1.18;max-width:86%}
.customizer-layer{touch-action:none;cursor:grab}.customizer-layer:active{cursor:grabbing}

/*rwd-fix2 2026-08-26 — mobilne naglowki na stronach laczacych portal.css i sklep.css (sklep.css laduje sie pozniej i wygrywal kaskada)*/
@media (max-width:1050px){
      .portal-split,.portal-split-image,.portal-split-copy{min-width:0}
        .portal-split-image img{max-width:100%}
        }
        @media (max-width:720px){
              .portal-intro h2,.portal-section-head h2,.portal-split-copy h2,.portal-feature h2,.portal-final-cta h2{font-size:clamp(34px,10.5vw,60px)}
                .portal-intro,.portal-intro>div{min-width:0}
                }
                
}