:root {
  --ink: #17171a;
  --soft-ink: #252529;
  --paper: #f7f3eb;
  --white: #ffffff;
  --cyan: #2eacd2;
  --magenta: #dc277c;
  --yellow: #ffd006;
  --blue: #1515ff;
  --line: rgba(23, 23, 26, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.mobile-contact-bar {
  display: none;
}

img {
  display: block;
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.top-strip {
  min-height: 34px;
  padding: 7px 5vw;
  display: flex;
  justify-content: center;
  gap: 26px;
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-strip p {
  margin: 0;
  opacity: 0.75;
}

.top-contact {
  display: flex;
  gap: 24px;
}

.top-strip a {
  color: var(--yellow);
}

.top-contact a:first-child {
  color: var(--white);
}

.site-header {
  height: 90px;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: auto 1fr auto;
  column-gap: 32px;
  align-items: center;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}

.site-header > :not(.header-swoosh) {
  z-index: 1;
}

.header-swoosh {
  width: 100%;
  height: 54px;
  grid-column: 1 / 3;
  grid-row: 1;
  align-self: end;
  pointer-events: none;
}

.brand {
  display: inline-flex;
  grid-column: 1;
  grid-row: 1;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand strong {
  font: 800 17px/1.1 "Manrope", sans-serif;
  letter-spacing: -0.04em;
}

.brand small {
  color: var(--magenta);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  grid-column: 3;
  grid-row: 1;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--magenta);
  transition: right 180ms ease;
}

.main-nav > a:hover::after {
  right: 0;
}

.nav-cta {
  padding: 13px 21px;
  color: var(--white);
  background: var(--ink);
  border-radius: 100px;
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: 710px;
  display: grid;
  grid-template-columns: 48% 52%;
  overflow: hidden;
  background: var(--paper);
}

.hero-copy {
  padding: 92px 5vw 70px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--magenta);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: currentColor;
}

h1,
h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

h1 {
  max-width: 700px;
  font-size: clamp(62px, 7vw, 104px);
}

.hero h1 {
  font-size: clamp(50px, 5.4vw, 82px);
}

h1 em,
h2 em {
  color: var(--magenta);
  font-family: Georgia, serif;
  font-weight: 400;
}

.hero-intro {
  max-width: 590px;
  margin: 32px 0;
  color: #55545a;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  min-height: 54px;
  padding: 15px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  border: 0;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.button-primary {
  color: var(--white);
  background: var(--ink);
}

.button-primary span {
  color: var(--yellow);
}

.text-link {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.hero-proof {
  margin-top: 55px;
  padding-top: 25px;
  display: flex;
  gap: 0;
  border-top: 1px solid var(--line);
}

.hero-proof div {
  min-width: 120px;
  padding-right: 25px;
  margin-right: 25px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof strong {
  font: 800 20px "Manrope", sans-serif;
}

.hero-proof span {
  margin-top: 2px;
  color: #6b6970;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-projects {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-projects a {
  min-width: 0;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.hero-projects img {
  width: 54px;
  height: 54px;
  object-fit: cover;
}

.hero-projects a:nth-child(3) img {
  padding: 6px;
  object-fit: contain;
  background: var(--soft-ink);
}

.hero-projects span {
  padding-right: 8px;
  font: 800 10px/1.3 "Manrope", sans-serif;
  text-transform: uppercase;
}

.quick-contact {
  padding: 0 5vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--white);
  background: var(--ink);
}

.quick-contact a {
  min-width: 0;
  padding: 24px 30px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.quick-contact a:last-child {
  border-right: 0;
}

.quick-contact a:hover strong {
  color: var(--yellow);
}

.quick-contact small {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quick-contact strong {
  overflow-wrap: anywhere;
  font: 800 16px "Manrope", sans-serif;
  transition: color 160ms ease;
}

.trust-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--ink);
  background: var(--yellow);
  border-bottom: 1px solid rgba(23, 23, 26, 0.18);
}

.trust-banner > span {
  min-width: 0;
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid rgba(23, 23, 26, 0.18);
}

.trust-banner > span:last-child {
  border-right: 0;
}

.trust-banner strong {
  font: 800 15px "Manrope", sans-serif;
}

.trust-banner small {
  margin-top: 3px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-art {
  min-height: 710px;
  position: relative;
  overflow: hidden;
  background: var(--cyan);
}

.hero-slider {
  background: var(--ink);
}

.hero-slider::before {
  display: none;
}

.hero-slide {
  margin: 0;
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 600ms ease, visibility 600ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 25% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.88));
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide:nth-child(1) img {
  object-position: 54% center;
}

.hero-slide:nth-child(3) img {
  object-fit: contain;
  background: #ddd8ce;
}

.hero-slide figcaption {
  max-width: 520px;
  padding: 0 54px 58px;
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  color: var(--white);
}

.hero-slide figcaption small {
  margin-bottom: 9px;
  color: var(--yellow);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-slide figcaption strong {
  font: 800 clamp(28px, 3vw, 44px)/1.05 "Manrope", sans-serif;
  letter-spacing: -0.05em;
}

.hero-slider-controls {
  display: flex;
  gap: 9px;
  position: absolute;
  right: 30px;
  bottom: 28px;
  z-index: 3;
}

.hero-slider-controls button {
  width: 34px;
  height: 7px;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  border: 0;
  cursor: pointer;
}

.hero-slider-controls button.is-active {
  background: var(--yellow);
}

.hero-art::before {
  content: "";
  position: absolute;
  width: 80%;
  aspect-ratio: 1;
  top: 8%;
  right: -20%;
  border: 70px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.color-orbit {
  position: absolute;
  border-radius: 50%;
}

.orbit-one {
  width: 310px;
  height: 310px;
  left: 15%;
  bottom: -20%;
  background: var(--yellow);
}

.orbit-two {
  width: 120px;
  height: 120px;
  right: 10%;
  top: 7%;
  border: 25px solid var(--magenta);
}

.hero-card {
  position: absolute;
  box-shadow: 0 30px 70px rgba(0, 45, 60, 0.25);
}

.card-sign {
  width: 48%;
  height: 290px;
  top: 16%;
  left: 7%;
  padding: 32px;
  color: var(--white);
  background: var(--ink);
  transform: rotate(-7deg);
  border-radius: 4px;
}

.card-label {
  padding: 5px 8px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.card-sign strong {
  margin-top: 38px;
  display: block;
  font: 800 42px/0.95 "Manrope", sans-serif;
  letter-spacing: -0.05em;
}

.sign-lines {
  margin-top: 28px;
  display: flex;
  gap: 7px;
}

.sign-lines i {
  width: 36px;
  height: 5px;
  display: block;
  background: var(--magenta);
}

.sign-lines i:nth-child(2) {
  background: var(--yellow);
}

.sign-lines i:nth-child(3) {
  background: var(--cyan);
}

.card-vehicle {
  width: 49%;
  height: 150px;
  top: 54%;
  right: 3%;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  background: var(--yellow);
  transform: rotate(5deg);
  border-radius: 5px;
}

.car-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--magenta);
  border-radius: 50%;
  font-size: 24px;
}

.card-vehicle div {
  display: flex;
  flex-direction: column;
}

.card-vehicle small {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.card-vehicle strong {
  font: 800 21px "Manrope", sans-serif;
  letter-spacing: -0.04em;
}

.card-print {
  width: 38%;
  height: 225px;
  left: 16%;
  bottom: 2%;
  padding: 35px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--ink);
  background: var(--white);
  transform: rotate(4deg);
  border: 7px solid var(--white);
  outline: 1px solid rgba(0, 0, 0, 0.14);
  outline-offset: -14px;
}

.card-print small {
  font-size: 8px;
  letter-spacing: 0.22em;
}

.card-print strong {
  margin: 7px 0 18px;
  color: var(--magenta);
  font: 400 34px Georgia, serif;
}

.card-print span {
  font-size: 8px;
}

.hero-badge {
  width: 120px;
  height: 120px;
  padding: 12px;
  display: grid;
  place-items: center;
  position: absolute;
  top: 38%;
  left: 46%;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
  transform: rotate(7deg);
}

.spark {
  position: absolute;
  color: var(--white);
  font-size: 35px;
}

.spark-one {
  top: 10%;
  left: 6%;
}

.spark-two {
  bottom: 7%;
  right: 8%;
}

.marquee {
  padding: 16px 0;
  overflow: hidden;
  color: var(--white);
  background: var(--magenta);
}

.marquee div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 30px;
  animation: drift 24s linear infinite;
}

.marquee span {
  font: 800 13px "Manrope", sans-serif;
  letter-spacing: 0.13em;
}

.marquee i {
  color: var(--yellow);
  font-style: normal;
}

@keyframes drift {
  from { transform: translateX(0); }
  to { transform: translateX(-20%); }
}

.section {
  padding: 110px 5vw;
}

.section-heading {
  margin-bottom: 52px;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 60px;
  align-items: end;
}

.section-heading h2,
.process h2,
.about h2,
.contact h2 {
  font-size: clamp(48px, 5vw, 75px);
}

.section-heading > p {
  max-width: 480px;
  margin: 0 0 8px;
  color: #5e5c62;
  font-size: 17px;
  line-height: 1.7;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.pricing {
  background: #f1f3f4;
}

.pricing-groups {
  display: grid;
  gap: 28px;
}

.pricing-group {
  background: var(--white);
  border-top: 5px solid var(--ink);
}

.pricing-group-heading {
  padding: 28px 30px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.pricing-group-heading > span {
  color: var(--magenta);
  font-size: 13px;
  font-weight: 900;
}

.pricing-group-heading h3 {
  margin: 0 0 5px;
  font-size: 25px;
}

.pricing-group-heading p,
.price-row p {
  margin: 0;
  color: #666269;
  line-height: 1.5;
}

.price-row {
  min-height: 90px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--line);
}

.price-row h4 {
  margin: 0 0 4px;
  font-size: 17px;
}

.price-row strong {
  flex: 0 0 auto;
  color: var(--magenta);
  font-size: 18px;
  text-align: right;
}

.price-featured {
  background: #fff9dc;
}

.price-badge {
  margin-bottom: 7px;
  display: block;
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pricing-note {
  margin: 0;
  padding: 17px 30px;
  color: #5e5c62;
  font-size: 13px;
  font-weight: 700;
}

.stepvanie-pricing {
  margin-top: 28px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: var(--white);
  background: var(--ink);
}

.stepvanie-pricing small {
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}

.stepvanie-pricing h3 {
  margin: 5px 0;
  font-size: 28px;
}

.stepvanie-pricing p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.6;
}

.stepvanie-pricing ul {
  margin: 18px 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
}

.stepvanie-pricing li {
  padding-left: 20px;
  position: relative;
  color: rgba(255, 255, 255, 0.88);
}

.stepvanie-pricing li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 900;
}

.stepvanie-pricing .stepvanie-custom-note {
  font-size: 13px;
}

.stepvanie-price {
  min-width: 245px;
  padding-left: 32px;
  display: grid;
  gap: 4px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.stepvanie-price strong {
  color: var(--yellow);
  font-size: 30px;
}

.stepvanie-price > span {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.stepvanie-teaser {
  margin-top: 28px;
  padding: 26px 28px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 30px;
  color: var(--white);
  background: var(--ink);
}

.stepvanie-teaser small {
  color: var(--yellow);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stepvanie-teaser h3 {
  margin: 5px 0;
  font-size: 23px;
}

.stepvanie-teaser p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.5;
}

.stepvanie-teaser-price {
  min-width: 150px;
  padding-left: 28px;
  display: grid;
  gap: 3px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.stepvanie-teaser-price strong {
  color: var(--yellow);
  font-size: 24px;
  white-space: nowrap;
}

.pricing-action {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.pricing-action p {
  margin: 0;
  color: #5e5c62;
}

.product-card {
  grid-column: span 4;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(35, 31, 26, 0.1);
}

.product-featured {
  grid-column: span 8;
}

.product-wide {
  grid-column: span 8;
}

.product-visual {
  height: 300px;
  position: relative;
  overflow: hidden;
}

.product-price-tag {
  padding: 9px 13px 10px;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 5;
  color: var(--white);
  background: var(--ink);
  border-left: 5px solid var(--yellow);
  box-shadow: 5px 5px 0 var(--magenta);
}

.product-price-tag small {
  color: var(--yellow);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-price-tag strong {
  margin-top: 2px;
  font: 800 16px "Manrope", sans-serif;
  line-height: 1.15;
  white-space: nowrap;
}

.product-featured .product-visual,
.product-wide .product-visual {
  height: 390px;
}

.signage-visual {
  display: grid;
  place-items: center;
  padding: 16px;
  background: var(--yellow);
}

.signage-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  border: 7px solid var(--white);
  box-shadow: 10px 10px 0 var(--magenta);
}

.vehicle-visual {
  padding: 12px;
  background: var(--cyan);
}

.vehicle-visual .vehicle-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: 6px solid var(--white);
  box-shadow: 8px 8px 0 var(--yellow);
}

.vehicle-visual .vehicle-secondary {
  width: 31%;
  height: 54%;
  position: absolute;
  right: 19px;
  bottom: 18px;
  object-fit: cover;
  object-position: center 30%;
  border: 5px solid var(--white);
  box-shadow: 5px 5px 0 var(--magenta);
  transform: rotate(2deg);
}

.name-visual {
  display: grid;
  place-items: center;
  padding: 18px;
  background: #e8d9c8;
}

.name-visual .name-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 6px solid var(--white);
  box-shadow: 8px 8px 0 var(--magenta);
}

.name-visual .name-secondary {
  width: 34%;
  height: 46%;
  position: absolute;
  right: 21px;
  bottom: 20px;
  object-fit: cover;
  border: 5px solid var(--white);
  box-shadow: 5px 5px 0 var(--yellow);
  transform: rotate(2deg);
}

.name-visual .name-accent {
  width: 42%;
  height: 34%;
  position: absolute;
  left: 22px;
  bottom: 20px;
  object-fit: cover;
  object-position: center;
  border: 5px solid var(--white);
  box-shadow: 5px 5px 0 var(--cyan);
  transform: rotate(-2deg);
}

.pet-visual {
  display: grid;
  place-items: center;
  padding: 18px;
  background: var(--magenta);
}

.pet-visual .pet-main {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #e7d78d;
  border: 7px solid var(--white);
  box-shadow: 9px 9px 0 var(--yellow);
}

.pet-visual .pet-secondary {
  width: 34%;
  height: 45%;
  position: absolute;
  right: 21px;
  bottom: 20px;
  object-fit: cover;
  border: 5px solid var(--white);
  box-shadow: 5px 5px 0 var(--cyan);
  transform: rotate(2deg);
}

.plate-visual {
  display: grid;
  place-items: center;
  background: var(--soft-ink);
}

.plate-visual::before,
.plate-visual::after {
  content: "";
  width: 110px;
  height: 110px;
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.plate-visual::before {
  top: -20px;
  left: 15%;
  background: var(--magenta);
}

.plate-visual::after {
  right: 12%;
  bottom: -20px;
  background: var(--cyan);
}

.plate-visual img {
  width: 88%;
  height: 82%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.45));
}

.magnet-visual {
  display: grid;
  place-items: center;
  padding: 16px;
  background: var(--cyan);
}

.magnet-visual .magnet-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
  background: #d9dde0;
  border: 6px solid var(--white);
  box-shadow: 8px 8px 0 var(--yellow);
}

.magnet-visual .magnet-secondary {
  width: 35%;
  height: 52%;
  position: absolute;
  right: 20px;
  bottom: 19px;
  object-fit: cover;
  object-position: center 58%;
  border: 5px solid var(--white);
  box-shadow: 5px 5px 0 var(--magenta);
  transform: rotate(2deg);
}

.tumbler-visual {
  display: grid;
  place-items: center;
  background: var(--magenta);
}

.tumbler {
  width: 128px;
  height: 225px;
  padding: 60px 12px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  color: var(--ink);
  background: linear-gradient(145deg, var(--cyan), var(--white) 48%, var(--yellow));
  border-radius: 15px 15px 38px 38px;
  box-shadow: 14px 15px 0 rgba(23, 23, 26, 0.2);
  transform: rotate(5deg);
}

.tumbler-lid {
  width: 138px;
  height: 25px;
  position: absolute;
  top: -8px;
  background: var(--soft-ink);
  border-radius: 8px 8px 3px 3px;
}

.tumbler strong {
  color: var(--magenta);
  font: 800 24px "Manrope", sans-serif;
  letter-spacing: -0.05em;
  transform: rotate(-90deg) translateX(-25px);
}

.tumbler small {
  margin-top: 24px;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.tumbler-spark {
  position: absolute;
  color: var(--yellow);
  font-size: 28px;
}

.spark-left {
  left: 18%;
  top: 25%;
}

.spark-right {
  right: 16%;
  bottom: 21%;
}

.shirt-visual {
  display: grid;
  place-items: center;
  padding: 16px;
  background: var(--yellow);
}

.shirt-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: 6px solid var(--white);
  box-shadow: 8px 8px 0 var(--magenta);
}

.product-info {
  min-height: 145px;
  padding: 25px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: start;
}

.product-number {
  color: var(--magenta);
  font: 800 11px "Manrope", sans-serif;
}

.product-info h3,
.product-more h3,
.process-steps h3 {
  margin: 0 0 7px;
  font: 800 20px/1.2 "Manrope", sans-serif;
  letter-spacing: -0.04em;
}

.product-info p,
.product-more p {
  margin: 0;
  color: #69676e;
  font-size: 14px;
  line-height: 1.55;
}

.product-info > a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: color 180ms ease, background 180ms ease;
}

.product-info > a:hover {
  color: var(--white);
  background: var(--magenta);
}

.product-more {
  min-height: 536px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background: var(--magenta);
  border-color: var(--magenta);
}

.product-more h3 {
  margin-top: 45px;
  font-size: 36px;
}

.product-more p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.name-order {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 75px;
  align-items: start;
  background: var(--ink);
}

.name-order-intro {
  position: sticky;
  top: 35px;
  color: var(--white);
}

.name-order-intro .eyebrow {
  color: var(--cyan);
}

.name-order-intro h2 {
  font-size: clamp(48px, 5vw, 75px);
}

.name-order-intro h2 em {
  color: var(--yellow);
}

.name-order-intro > p:not(.eyebrow) {
  max-width: 480px;
  margin: 28px 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 17px;
  line-height: 1.7;
}

.order-roadmap {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.order-roadmap span {
  padding: 13px 0;
  color: rgba(255, 255, 255, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-roadmap span.is-active {
  color: var(--yellow);
}

.name-order-form {
  padding: 42px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 14px 14px 0 var(--magenta);
}

.order-step {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.order-step.is-active {
  display: block;
}

.order-step legend {
  margin-bottom: 10px;
  font: 800 29px/1.2 "Manrope", sans-serif;
  letter-spacing: -0.045em;
}

.order-step legend span {
  margin-right: 8px;
  color: var(--magenta);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.step-help {
  margin: 0 0 25px;
  color: #69676e;
  line-height: 1.6;
}

.selected-gift-overview {
  margin-bottom: 24px;
  padding: 22px 24px;
  background: var(--ink);
  border-left: 6px solid var(--yellow);
  box-shadow: 6px 6px 0 var(--magenta);
}

.selected-gift-overview > small {
  color: var(--cyan);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.selected-gift-overview h3 {
  margin: 6px 0 7px;
  color: var(--white);
  font: 800 23px/1.15 "Manrope", sans-serif;
}

.selected-gift-overview p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
}

.selected-gift-overview ul {
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.selected-gift-overview li {
  padding: 6px 9px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.name-background-picker {
  margin-bottom: 28px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
}

.background-picker-heading {
  margin-bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.background-picker-heading small {
  color: var(--magenta);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.background-picker-heading h3 {
  margin: 4px 0 0;
  font: 800 22px "Manrope", sans-serif;
}

.background-picker-heading label {
  margin: 0 !important;
}

.background-search {
  min-width: 210px;
  padding: 10px 12px !important;
}

.background-gallery-status {
  margin: 0 0 12px;
  color: #69676e;
  font-size: 12px;
  font-weight: 700;
}

.background-category-filters {
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.background-category-filter {
  padding: 7px 9px;
  color: var(--ink);
  background: #eee8de;
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.background-category-filter:hover,
.background-category-filter.is-active {
  color: var(--white);
  background: var(--magenta);
  border-color: var(--magenta);
}

.background-category-filter span {
  margin-left: 4px;
  color: inherit;
  opacity: 0.7;
}

.background-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(105px, 1fr));
  gap: 10px;
}

.background-option {
  min-width: 0;
  padding: 7px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--ink);
  background: #f4f0e8;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: left;
}

.background-option:hover {
  border-color: var(--cyan);
}

.background-option.is-selected {
  background: #fff9dc;
  border-color: var(--magenta);
  box-shadow: 4px 4px 0 var(--yellow);
}

.background-option img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #ddd8ce;
}

.background-option strong {
  min-height: 29px;
  font: 800 10px/1.35 "Manrope", sans-serif;
}

.background-pagination {
  margin-top: 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
}

.background-pagination button {
  padding: 9px 12px;
  color: var(--white);
  background: var(--ink);
  border: 0;
  font-weight: 800;
  cursor: pointer;
}

.background-pagination button:disabled {
  opacity: 0.3;
  cursor: default;
}

.background-page-status {
  color: #69676e;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.background-selection-error {
  min-height: 20px;
  margin: 12px 0 0;
  color: #b00047;
  font-size: 12px;
  font-weight: 800;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.choice-card {
  cursor: pointer;
}

.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card > span {
  min-height: 105px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  border: 2px solid transparent;
  box-shadow: 3px 3px 0 #ded8cf;
  transition: border 160ms ease, transform 160ms ease;
}

.choice-card:hover > span {
  transform: translateY(-2px);
}

.choice-card input:checked + span {
  border-color: var(--magenta);
  box-shadow: 5px 5px 0 var(--yellow);
}

.choice-card strong {
  font: 800 15px "Manrope", sans-serif;
}

.choice-card small {
  margin-top: 5px;
  color: #77747a;
  font-size: 11px;
  line-height: 1.45;
}

.name-order-form label:not(.choice-card):not(.approval-check) {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.name-order-form input,
.name-order-form select,
.name-order-form textarea {
  width: 100%;
  padding: 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #d7d1c8;
  border-radius: 0;
  font: 500 15px "DM Sans", sans-serif;
  text-transform: none;
  outline: 0;
}

.name-order-form input:focus,
.name-order-form select:focus,
.name-order-form textarea:focus {
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(220, 39, 124, 0.12);
}

.order-summary {
  margin-bottom: 24px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  background: var(--white);
  border-left: 5px solid var(--magenta);
}

.order-summary p {
  margin: 0;
  color: #66646a;
  font-size: 12px;
}

.order-summary strong {
  color: var(--ink);
}

.approval-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.5;
}

.approval-check input {
  width: auto;
  margin-top: 3px;
}

.order-controls {
  margin-top: 28px;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}

.order-back {
  padding: 12px 5px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  cursor: pointer;
  font-weight: 800;
}

.order-back:disabled {
  opacity: 0.3;
  cursor: default;
}

.order-submit {
  display: none;
}

.portfolio {
  background: #eee8de;
}

.portfolio-preview {
  background: var(--white);
}

.preview-grid {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.preview-card {
  min-height: 300px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--soft-ink);
}

.preview-card::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.88));
}

.preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.preview-card:nth-child(3) img,
.preview-card:nth-child(6) img {
  padding: 25px;
  object-fit: contain;
  background: #ddd8ce;
}

.preview-card:hover img {
  transform: scale(1.04);
}

.preview-card > span:last-child {
  padding: 22px;
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.preview-card strong {
  font: 800 21px "Manrope", sans-serif;
}

.preview-card small {
  margin-top: 4px;
  color: var(--yellow);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-card-concept {
  display: grid;
  place-items: center;
  background: var(--magenta);
}

.preview-card-concept:nth-child(5) {
  background: var(--cyan);
}

.preview-card-concept::before {
  content: "";
  width: 170px;
  height: 170px;
  position: absolute;
  border: 25px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.preview-icon {
  position: relative;
  z-index: 1;
  color: var(--white);
  font: 800 38px "Manrope", sans-serif;
  letter-spacing: -0.06em;
}

.portfolio-preview-button {
  margin-top: 35px;
}

.portfolio-heading {
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 18px;
}

.gallery-item {
  margin: 0;
  min-width: 0;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border: 7px solid var(--white);
  box-shadow: 7px 7px 0 rgba(23, 23, 26, 0.1);
}

.gallery-large {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.gallery-item:nth-child(1) img {
  object-position: center 18%;
}

.gallery-contain img {
  object-fit: contain;
  background: #ddd8ce;
}

.gallery-padded img {
  object-fit: contain;
  padding: 22px;
  background: var(--soft-ink);
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item figcaption {
  padding: 14px 17px;
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 12px;
  bottom: 12px;
  color: var(--white);
  background: rgba(23, 23, 26, 0.92);
  box-shadow: 5px 5px 0 var(--magenta);
}

.gallery-item figcaption strong {
  font: 800 14px "Manrope", sans-serif;
}

.gallery-item figcaption span {
  color: var(--yellow);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.asterisk {
  color: var(--yellow);
  font-size: 60px;
}

.button-light {
  color: var(--ink);
  background: var(--white);
  align-self: flex-start;
}

.stepvanie {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(280px, 2fr);
  column-gap: 60px;
  row-gap: 52px;
  align-items: center;
  overflow: hidden;
  background: var(--white);
  padding-bottom: 64px;
}

.stepvanie-visual {
  min-height: 600px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: var(--cyan);
}

.stepvanie-visual::before {
  content: "";
  width: 360px;
  height: 360px;
  position: absolute;
  top: -160px;
  right: -110px;
  border: 70px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.stepvanie-visual::after {
  content: "";
  width: 100%;
  height: 82px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--soft-ink);
}

.stepvanie-photo {
  width: calc(100% - 48px);
  height: calc(100% - 70px);
  position: relative;
  z-index: 2;
  object-fit: contain;
  background: #eef1f4;
  border: 8px solid var(--white);
  box-shadow: 14px 14px 0 var(--yellow);
}

.stepvanie-photo-label {
  padding: 11px 16px 11px 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  position: relative;
  position: absolute;
  top: 9%;
  left: 6%;
  z-index: 4;
  color: var(--white);
  background: var(--ink);
  box-shadow: 6px 6px 0 var(--magenta);
  transform: rotate(-2deg);
}

.stepvanie-photo-label img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: var(--white);
  border-radius: 50%;
}

.stepvanie-photo-label div {
  display: flex;
  flex-direction: column;
}

.stepvanie-photo-label small {
  color: var(--yellow);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.25em;
}

.stepvanie-photo-label strong {
  font: 800 clamp(17px, 2vw, 27px) "Manrope", sans-serif;
  letter-spacing: -0.06em;
}

.stepvanie-photo-label span {
  color: var(--cyan);
  font: 700 9px "Manrope", sans-serif;
  letter-spacing: 0.05em;
}

.studio-badge {
  padding: 12px 18px;
  position: absolute;
  left: 6%;
  bottom: 7%;
  z-index: 4;
  color: var(--ink);
  background: var(--yellow);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  transform: rotate(-3deg);
}

.stepvanie-copy h2 {
  font-size: clamp(48px, 5vw, 75px);
}

.stepvanie-lead {
  margin: 30px 0 14px;
  font: 700 23px/1.45 "Manrope", sans-serif;
  letter-spacing: -0.03em;
}

.stepvanie-copy > p:not(.eyebrow):not(.stepvanie-lead) {
  max-width: 560px;
  color: #66646a;
  line-height: 1.75;
}

.stepvanie-copy > .button {
  margin-top: 25px;
}

.studio-services {
  margin: 30px 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.studio-services li {
  padding: 16px 12px 16px 0;
  display: flex;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.studio-services li:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.studio-services li:nth-child(even) {
  padding-left: 18px;
}

.studio-services span {
  color: var(--magenta);
  font-size: 10px;
}

.stepvanie-services-block,
.stepvanie-how {
  grid-column: 1 / -1;
}

.stepvanie-services-block {
  padding-top: 46px;
  border-top: 1px solid var(--line);
}

.stepvanie-subheading {
  margin-bottom: 25px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.stepvanie-subheading h3 {
  max-width: 600px;
  margin: 0;
  font: 800 clamp(28px, 3vw, 43px)/1.08 "Manrope", sans-serif;
  letter-spacing: -0.05em;
}

.stepvanie-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.stepvanie-service-grid article {
  min-width: 0;
  padding: 25px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 4px solid var(--cyan);
}

.stepvanie-service-grid article:nth-child(2) { border-top-color: var(--magenta); }
.stepvanie-service-grid article:nth-child(3) { border-top-color: var(--yellow); }
.stepvanie-service-grid article:nth-child(4) { border-top-color: var(--ink); }

.stepvanie-service-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
}

.stepvanie-service-icon svg {
  width: 24px;
  height: 24px;
}

.stepvanie-service-grid h4 {
  margin: 20px 0 8px;
  font: 800 17px/1.2 "Manrope", sans-serif;
}

.stepvanie-service-grid p {
  margin: 0;
  color: #66646a;
  font-size: 13px;
  line-height: 1.55;
}

.stepvanie-how {
  padding: 34px 38px;
  display: grid;
  grid-template-columns: 0.7fr 1.8fr;
  gap: 46px;
  align-items: center;
  color: var(--white);
  background: var(--ink);
}

.stepvanie-how-intro small {
  color: var(--yellow);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stepvanie-how-intro h3 {
  margin: 8px 0 0;
  font: 800 clamp(25px, 3vw, 39px)/1.05 "Manrope", sans-serif;
  letter-spacing: -0.05em;
}

.stepvanie-how ol {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  list-style: none;
}

.stepvanie-how li {
  min-width: 0;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
}

.stepvanie-how li > span {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
}

.stepvanie-how strong {
  font: 800 14px "Manrope", sans-serif;
}

.stepvanie-how p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  line-height: 1.55;
}

.process {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  color: var(--white);
  background: var(--ink);
}

.eyebrow-light {
  color: var(--cyan);
}

.process h2 em,
.contact h2 em {
  color: var(--yellow);
}

.process-intro > p:not(.eyebrow) {
  max-width: 480px;
  margin: 30px 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
  line-height: 1.7;
}

.button-yellow {
  color: var(--ink);
  background: var(--yellow);
}

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps li {
  min-height: 140px;
  padding: 26px 0;
  display: grid;
  grid-template-columns: 70px 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.process-steps li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.process-steps > li > span {
  color: var(--yellow);
  font: 800 12px "Manrope", sans-serif;
}

.process-steps h3 {
  font-size: 23px;
}

.process-steps p {
  max-width: 510px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.6;
}

.turnaround {
  background: #eee8de;
}

.turnaround-heading {
  margin-bottom: 32px;
}

.turnaround-ranges {
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.turnaround-ranges > span {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
  background: var(--ink);
}

.turnaround-ranges > span:last-child {
  color: var(--ink);
  background: var(--yellow);
}

.turnaround-ranges small {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.turnaround-ranges strong {
  color: var(--yellow);
  font: 800 27px "Manrope", sans-serif;
  white-space: nowrap;
}

.turnaround-ranges > span:last-child strong {
  color: var(--magenta);
}

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

.turnaround-grid article {
  min-width: 0;
  padding: 28px 25px;
  background: var(--white);
  border-top: 5px solid var(--ink);
  box-shadow: 6px 6px 0 rgba(23, 23, 26, 0.1);
}

.turnaround-grid article:nth-child(2) { border-color: var(--cyan); }
.turnaround-grid article:nth-child(3) { border-color: var(--magenta); }
.turnaround-grid article:nth-child(4) { border-color: var(--yellow); }

.turnaround-grid article > span {
  color: var(--magenta);
  font-size: 10px;
  font-weight: 900;
}

.turnaround-grid h3 {
  margin: 12px 0 8px;
  font: 800 22px "Manrope", sans-serif;
}

.turnaround-grid p {
  margin: 0;
  color: #666269;
  font-size: 14px;
  line-height: 1.6;
}

.turnaround-note {
  margin-top: 22px;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  color: var(--white);
  background: var(--ink);
}

.turnaround-note strong {
  color: var(--yellow);
  font: 800 16px "Manrope", sans-serif;
}

.turnaround-note > span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.turnaround-note a {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-art {
  min-height: 560px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: var(--yellow);
}

.about-art::before {
  content: "";
  width: 240px;
  height: 100%;
  position: absolute;
  left: -80px;
  background: var(--magenta);
  transform: skew(-13deg);
}

.about-art::after {
  content: "";
  width: 220px;
  height: 100%;
  position: absolute;
  right: -90px;
  background: var(--cyan);
  transform: skew(13deg);
}

.about-circle {
  width: min(62%, 370px);
  aspect-ratio: 1;
  padding: 25px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 25px 60px rgba(50, 35, 0, 0.2);
}

.about-stamp {
  padding: 10px 18px;
  position: absolute;
  right: 5%;
  bottom: 8%;
  z-index: 3;
  color: var(--white);
  background: var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
  transform: rotate(-4deg);
}

.about-lead {
  margin: 30px 0 15px;
  font: 700 24px/1.45 "Manrope", sans-serif;
  letter-spacing: -0.03em;
}

.about-copy > p:not(.eyebrow):not(.about-lead) {
  max-width: 560px;
  color: #66646a;
  line-height: 1.75;
}

.why-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.why-grid div {
  padding: 16px;
  background: var(--white);
  border-left: 4px solid var(--magenta);
  box-shadow: 4px 4px 0 #e5ded3;
}

.why-grid strong,
.why-grid span {
  display: block;
}

.why-grid strong {
  font: 800 14px "Manrope", sans-serif;
}

.why-grid span {
  margin-top: 5px;
  color: #6b6970;
  font-size: 11px;
  line-height: 1.45;
}

blockquote {
  margin: 35px 0 0;
  padding: 26px 0 0 30px;
  border-top: 1px solid var(--line);
  border-left: 5px solid var(--magenta);
  font: 400 22px/1.55 Georgia, serif;
}

blockquote strong {
  color: var(--magenta);
  font-weight: 400;
}

.contact {
  min-height: 680px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
  text-align: center;
}

.stepvanie-booking {
  background: var(--soft-ink);
  padding-top: 125px;
}

.contact-layout {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 75px;
  align-items: center;
  position: relative;
  z-index: 2;
  text-align: left;
}

.contact-content {
  max-width: 560px;
}

.contact .eyebrow {
  color: var(--yellow);
}

.contact h2 {
  font-size: clamp(50px, 6vw, 78px);
}

.contact-content > p:not(.eyebrow) {
  max-width: 540px;
  margin: 28px 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

.quote-benefits {
  margin: 0 0 30px;
  padding: 0;
  display: grid;
  gap: 11px;
  list-style: none;
}

.quote-benefits li {
  padding-left: 28px;
  position: relative;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.quote-benefits li::before {
  content: "✓";
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 11px;
}

.contact-details {
  display: flex;
  gap: 34px;
}

.contact-details > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-details small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-details strong {
  max-width: 220px;
  font: 700 15px/1.4 "Manrope", sans-serif;
}

.contact-phone {
  color: var(--yellow);
  font: 800 23px "Manrope", sans-serif;
  letter-spacing: -0.03em;
}

.quote-form {
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 14px 14px 0 var(--yellow);
  text-align: left;
}

.quote-form-heading {
  padding-bottom: 18px;
  border-bottom: 1px solid #ddd7cd;
}

.quote-form-heading small {
  color: var(--magenta);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.quote-form-heading h3 {
  margin: 4px 0;
  font: 800 28px "Manrope", sans-serif;
  letter-spacing: -0.04em;
}

.quote-form-heading p {
  margin: 0;
  color: #66646a;
  font-size: 13px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.quote-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: #f6f3ed;
  border: 1px solid #d7d1c8;
  border-radius: 0;
  font: 500 15px "DM Sans", sans-serif;
  text-transform: none;
  outline: none;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(220, 39, 124, 0.14);
}

.quote-form .button {
  align-self: flex-start;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: #66646a;
  font-size: 12px;
}

.form-note a {
  color: var(--magenta);
  font-weight: 800;
}

.hidden-field {
  display: none;
}

.contact-shape {
  position: absolute;
  border-radius: 50%;
}

.shape-magenta {
  width: 310px;
  height: 310px;
  left: -130px;
  top: -100px;
  border: 65px solid var(--magenta);
}

.shape-cyan {
  width: 280px;
  height: 280px;
  right: -90px;
  bottom: -100px;
  border: 60px solid var(--cyan);
}

footer {
  min-height: 130px;
  padding: 30px 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 30px;
  color: var(--ink);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.footer-brand strong {
  color: var(--ink);
}

footer > p {
  margin: 0;
  color: #66646a;
  font-size: 12px;
}

footer > p:nth-child(2) {
  color: var(--magenta);
  font-family: Georgia, serif;
  font-size: 15px;
  text-align: center;
}

footer > p:last-child {
  text-align: right;
}

.footer-contact a {
  color: var(--magenta);
  font-weight: 800;
  line-height: 2;
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 16px;
    font-size: 13px;
  }

  .quick-contact {
    grid-template-columns: 1fr 1fr;
  }

  .quick-contact a:nth-child(2) {
    border-right: 0;
  }

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

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 80px;
  }

  .hero-art {
    min-height: 650px;
  }

  .product-card,
  .product-featured,
  .product-wide {
    grid-column: span 6;
  }

  .product-more {
    min-height: auto;
  }

  .process {
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
  }

  .about {
    gap: 55px;
  }

  .stepvanie {
    gap: 55px;
  }

  .stepvanie-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stepvanie-how {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-layout {
    gap: 45px;
  }

  .name-order {
    gap: 50px;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
  }

  .trust-banner {
    grid-template-columns: 1fr 1fr;
  }

  .trust-banner > span {
    padding: 15px 10px;
  }

  .trust-banner > span:nth-child(2) {
    border-right: 0;
  }

  .trust-banner > span:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(23, 23, 26, 0.18);
  }

  .turnaround-ranges,
  .turnaround-grid,
  .turnaround-note {
    grid-template-columns: 1fr;
  }

  .turnaround-ranges > span {
    padding: 20px;
  }

  .turnaround-note {
    align-items: start;
  }

  .mobile-contact-bar {
    padding: 5px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    z-index: 1000;
    background: var(--white);
    border: 2px solid var(--ink);
    box-shadow: 5px 5px 0 rgba(23, 23, 26, 0.24);
  }

  .mobile-contact-bar a {
    min-width: 0;
    min-height: 58px;
    padding: 9px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--ink);
  }

  .mobile-contact-bar svg {
    width: 25px;
    height: 25px;
    flex: 0 0 auto;
  }

  .mobile-contact-bar span {
    min-width: 0;
    display: flex;
    flex-direction: column;
  }

  .mobile-contact-bar small {
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .mobile-contact-bar strong {
    margin-top: 2px;
    font: 800 13px "Manrope", sans-serif;
    line-height: 1.15;
    white-space: nowrap;
  }

  .mobile-contact-call {
    background: var(--yellow);
  }

  .mobile-contact-text {
    color: var(--white) !important;
    background: var(--magenta);
  }

  .top-strip {
    justify-content: space-between;
    gap: 10px;
    font-size: 9px;
  }

  .top-contact {
    gap: 12px;
  }

  .top-contact a:last-child {
    display: none;
  }

  .site-header {
    height: 76px;
  }

  .header-swoosh {
    height: 46px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand strong {
    font-size: 15px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    padding: 12px;
    display: flex;
    grid-column: 3;
    grid-row: 1;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: 0;
  }

  .menu-toggle span:not(.sr-only) {
    width: 100%;
    height: 2px;
    display: block;
    background: var(--ink);
  }

  .main-nav {
    padding: 28px 5vw;
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    color: var(--white);
    background: var(--ink);
  }

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

  .nav-cta {
    color: var(--ink);
    background: var(--yellow);
    text-align: center;
  }

  .hero-copy {
    padding-top: 65px;
  }

  h1 {
    font-size: clamp(55px, 16vw, 78px);
  }

  .hero-actions,
  .contact-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-proof {
    justify-content: space-between;
  }

  .hero-proof div {
    min-width: 0;
    padding-right: 12px;
    margin-right: 12px;
  }

  .hero-projects {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 540px;
  }

  .hero-slide figcaption {
    padding: 0 24px 70px;
  }

  .hero-slider-controls {
    right: auto;
    left: 24px;
    bottom: 28px;
  }

  .quick-contact {
    padding: 0;
    grid-template-columns: 1fr;
  }

  .quick-contact a {
    padding: 18px 5vw;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .card-sign {
    width: 62%;
    height: 245px;
    padding: 25px;
  }

  .card-sign strong {
    font-size: 34px;
  }

  .card-vehicle {
    width: 57%;
    height: 125px;
  }

  .card-print {
    width: 45%;
    height: 190px;
  }

  .hero-badge {
    width: 90px;
    height: 90px;
  }

  .section {
    padding: 78px 5vw;
  }

  .section-heading,
  .process,
  .about,
  .stepvanie,
  .name-order {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .process,
  .about,
  .stepvanie,
  .name-order {
    gap: 45px;
  }

  .price-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .price-row strong {
    text-align: left;
  }

  .stepvanie-pricing {
    align-items: flex-start;
    flex-direction: column;
  }

  .stepvanie-price {
    width: 100%;
    padding: 24px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .stepvanie-teaser {
    padding: 24px 20px;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 20px;
  }

  .stepvanie-teaser-price {
    width: 100%;
    padding: 18px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .pricing-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .name-order-intro {
    position: static;
  }

  .order-roadmap {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }

  .order-roadmap span {
    padding: 10px 4px;
    font-size: 8px;
    text-align: center;
  }

  .name-order-form {
    padding: 28px 20px;
    box-shadow: 8px 8px 0 var(--magenta);
  }

  .choice-grid,
  .order-summary {
    grid-template-columns: 1fr;
  }

  .background-picker-heading label,
  .background-search {
    width: 100%;
    min-width: 0;
  }

  .background-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .background-category-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 7px;
  }

  .background-category-filter {
    flex: 0 0 auto;
  }

  .order-step legend {
    font-size: 24px;
  }

  .product-card,
  .product-featured,
  .product-wide {
    grid-column: span 12;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }

  .preview-grid {
    grid-template-columns: 1fr;
  }

  .gallery-large {
    grid-column: span 1;
  }

  .product-visual,
  .product-featured .product-visual,
  .product-wide .product-visual {
    height: 310px;
  }

  .plate-visual img {
    width: 80%;
  }

  .process-steps li {
    grid-template-columns: 45px 1fr;
  }

  .about-art {
    min-height: 430px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .stepvanie-visual {
    min-height: 440px;
  }

  .stepvanie {
    padding-bottom: 50px;
  }

  .stepvanie-subheading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .stepvanie-service-grid,
  .stepvanie-how ol {
    grid-template-columns: 1fr;
  }

  .stepvanie-how {
    padding: 28px 22px;
  }

  .stepvanie-booking {
    padding-top: 100px;
  }

  .stepvanie-photo {
    width: calc(100% - 28px);
    height: calc(100% - 50px);
  }

  .stepvanie-photo-label {
    top: 8%;
    left: 5%;
  }

  .studio-services {
    grid-template-columns: 1fr;
  }

  .studio-services li:nth-child(odd) {
    border-right: 0;
  }

  .studio-services li:nth-child(even) {
    padding-left: 0;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contact-details {
    flex-direction: column;
    gap: 18px;
  }

  .quote-form {
    padding: 25px 20px;
    box-shadow: 8px 8px 0 var(--yellow);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  footer > p:last-child {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .marquee div {
    animation: none;
  }

  * {
    transition-duration: 0.01ms !important;
  }
}
