:root {
  --ink: #171717;
  --muted: #6f6f6f;
  --line: #e7e7e7;
  --paper: #ffffff;
  --soft: #f5f5f3;
  --cyan: #08aae0;
  --magenta: #df0087;
  --yellow: #ffdf00;
  --green: #20c664;
}

[hidden]{display:none!important}body.no-scroll{overflow:hidden}.brand img,.footer-brand img{object-fit:contain}.work-visual.has-image{padding:0}.work-visual.has-image img{width:100%;height:100%;object-fit:cover;display:block}.catalog-loading,.catalog-error{grid-column:1/-1;padding:45px 20px;text-align:center;color:var(--muted)}.catalog-error{border:1px solid #f0bbc9;background:#fff2f6;color:#8b2151}.contact-trap{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;overflow:hidden!important}.form-status,.quote-status{min-height:22px;margin:4px 0 0;font-size:12px}.form-status.success,.quote-status.success{color:#16835a}.contact .form-status.success{color:#80efaa}.form-status.error,.quote-status.error{color:#c23b3b}.contact .form-status.error{color:#ff9cbc}.drawer-footer button:disabled,.contact-form button:disabled{opacity:.55;cursor:wait}.admin-access{opacity:.5;font-size:11px!important}.order-data select{background:var(--soft);border:0;color:var(--ink);font-size:12px;outline:none;padding:13px;width:100%}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

body,
button,
input,
textarea,
select {
  font-family: Arial, Helvetica, sans-serif;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

.top-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 5px;
  width: 100%;
}

.strip-cyan { background: var(--cyan); }
.strip-magenta { background: var(--magenta); }
.strip-yellow { background: var(--yellow); }
.strip-black { background: var(--ink); }

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 170px 1fr 170px;
  height: 96px;
  padding: 0 5.5vw;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
}

.brand {
  align-items: center;
  display: flex;
  height: 76px;
  overflow: hidden;
  width: 142px;
}

.brand img {
  height: auto;
  width: 100%;
}

.site-header nav {
  display: flex;
  gap: 34px;
  justify-content: center;
}

.site-header nav a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  position: relative;
}

.site-header nav a::after {
  background: var(--magenta);
  bottom: -10px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.site-header nav a:hover::after {
  transform: scaleX(1);
}

.cart-button {
  align-items: center;
  background: var(--ink);
  border: 0;
  color: white;
  cursor: pointer;
  display: flex;
  font-size: 13px;
  font-weight: 800;
  gap: 15px;
  justify-self: end;
  padding: 13px 14px 13px 20px;
}

.cart-button strong {
  align-items: center;
  background: var(--yellow);
  border-radius: 50%;
  color: var(--ink);
  display: flex;
  font-size: 12px;
  height: 26px;
  justify-content: center;
  width: 26px;
}

.menu-button {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  min-height: calc(100vh - 101px);
  overflow: hidden;
  padding: 6.5vw 5.5vw 5vw;
}

.hero-copy {
  align-self: center;
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  align-items: center;
  display: flex;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.eyebrow span {
  background: var(--cyan);
  height: 3px;
  margin-right: 13px;
  width: 35px;
}

.hero h1 {
  font-size: clamp(62px, 7.25vw, 118px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.83;
  margin: 0;
  max-width: 800px;
}

.ink-word {
  color: var(--magenta);
  display: inline-block;
  font-style: italic;
  position: relative;
}

.ink-word::after {
  background: var(--yellow);
  bottom: 0;
  content: "";
  height: 9px;
  left: 5%;
  position: absolute;
  transform: rotate(-1deg);
  width: 94%;
  z-index: -1;
}

.hero-text {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin: 34px 0 30px;
  max-width: 590px;
}

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

.button {
  align-items: center;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 38px;
  justify-content: space-between;
  padding: 18px 22px;
}

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

.button-dark:hover {
  background: var(--magenta);
}

.button-link {
  border-bottom: 2px solid var(--ink);
  padding: 12px 0 10px;
}

.hero-proof {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 55px;
  max-width: 590px;
  padding-top: 22px;
}

.hero-proof div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-proof strong {
  font-size: 19px;
  font-weight: 900;
}

.hero-proof span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-art {
  align-self: center;
  background-color: #f4f4f1;
  background-image:
    linear-gradient(#e8e8e4 1px, transparent 1px),
    linear-gradient(90deg, #e8e8e4 1px, transparent 1px);
  background-size: 34px 34px;
  height: min(650px, 67vw);
  max-height: 69vh;
  min-height: 520px;
  position: relative;
}

.paper {
  background: white;
  box-shadow: 0 22px 65px rgba(0, 0, 0, 0.14);
  position: absolute;
}

.paper-back {
  align-items: center;
  background: var(--ink);
  color: white;
  display: flex;
  flex-direction: column;
  height: 46%;
  justify-content: center;
  left: 18%;
  top: 12%;
  transform: rotate(-13deg);
  width: 54%;
}

.paper-back span {
  font-size: clamp(32px, 3vw, 50px);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.paper-back small {
  color: var(--yellow);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.28em;
  margin-top: 6px;
}

.paper-middle {
  height: 46%;
  left: 34%;
  padding: 30px;
  top: 23%;
  transform: rotate(9deg);
  width: 54%;
}

.swatch-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 38%;
  margin-bottom: 25px;
}

.swatch-row i { display: block; }
.swatch-row .cyan { background: var(--cyan); }
.swatch-row .magenta { background: var(--magenta); }
.swatch-row .yellow { background: var(--yellow); }
.swatch-row .black { background: var(--ink); }

.paper-middle b {
  display: block;
  font-size: clamp(26px, 2.7vw, 45px);
  letter-spacing: -0.06em;
}

.paper-middle em {
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.34em;
}

.paper-front {
  bottom: 8%;
  height: 45%;
  left: 11%;
  padding: 35px;
  transform: rotate(-4deg);
  width: 50%;
}

.paper-front p {
  font-size: clamp(27px, 2.8vw, 47px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.86;
  margin: 0;
}

.paper-front p span {
  color: var(--magenta);
}

.mini-grid {
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 7px;
  left: 35px;
  position: absolute;
  width: calc(100% - 70px);
}

.mini-grid i:nth-child(1) { background: var(--cyan); }
.mini-grid i:nth-child(2) { background: var(--magenta); }
.mini-grid i:nth-child(3) { background: var(--yellow); }
.mini-grid i:nth-child(4) { background: var(--ink); }

.color-orbit {
  border-radius: 50%;
  filter: saturate(1.1);
  mix-blend-mode: multiply;
  position: absolute;
}

.orbit-cyan {
  background: var(--cyan);
  height: 72px;
  right: 7%;
  top: 9%;
  width: 72px;
}

.orbit-magenta {
  background: var(--magenta);
  bottom: 7%;
  height: 88px;
  right: 15%;
  width: 88px;
}

.orbit-yellow {
  background: var(--yellow);
  height: 54px;
  left: 3%;
  top: 38%;
  width: 54px;
}

.hero-sticker {
  align-items: center;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 50%;
  bottom: 25%;
  display: flex;
  font-size: 10px;
  font-weight: 900;
  height: 90px;
  justify-content: center;
  line-height: 1.15;
  position: absolute;
  right: 4%;
  text-align: center;
  transform: rotate(11deg);
  width: 90px;
}

.registration-marks {
  color: #8f8f8b;
  font-size: 25px;
  font-weight: 300;
  position: absolute;
}

.marks-one { left: 5%; top: 6%; }
.marks-two { bottom: 4%; right: 5%; }

.brand-marquee {
  background: var(--ink);
  color: white;
  overflow: hidden;
  padding: 20px 0;
}

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

.brand-marquee span {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

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

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section-shell {
  padding-left: 5.5vw;
  padding-right: 5.5vw;
}

.about {
  padding-bottom: 110px;
  padding-top: 120px;
}

.section-label {
  align-items: center;
  display: flex;
  gap: 12px;
}

.section-label span {
  align-items: center;
  background: var(--ink);
  color: white;
  display: flex;
  font-size: 9px;
  font-weight: 900;
  height: 26px;
  justify-content: center;
  width: 26px;
}

.section-label p {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0;
  text-transform: uppercase;
}

.section-label.light span {
  background: white;
  color: var(--ink);
}

.about-content {
  display: grid;
  gap: 9vw;
  grid-template-columns: 1.2fr 0.8fr;
  margin-top: 42px;
}

.about-content h2,
.section-heading h2,
.portfolio-top h2,
.shop h2,
.process h2,
.contact h2 {
  font-size: clamp(44px, 5.7vw, 88px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.92;
  margin: 0;
}

.about-content h2 span {
  color: var(--cyan);
}

.about-copy {
  align-self: end;
  padding-bottom: 4px;
}

.about-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 18px;
}

.about-copy a {
  border-bottom: 2px solid var(--ink);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  gap: 50px;
  margin-top: 8px;
  padding-bottom: 9px;
}

.values {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 95px;
}

.values div {
  border-right: 1px solid var(--line);
  padding: 28px 35px 8px 0;
}

.values div + div {
  padding-left: 35px;
}

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

.values b {
  color: var(--magenta);
  display: block;
  font-size: 10px;
  margin-bottom: 28px;
}

.values strong {
  display: block;
  font-size: 19px;
  margin-bottom: 10px;
}

.values p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

.services {
  background: var(--ink);
  color: white;
  padding-bottom: 120px;
  padding-top: 110px;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  margin-bottom: 70px;
}

.section-heading h2 {
  font-size: clamp(42px, 5vw, 76px);
}

.section-heading h2 span {
  color: var(--yellow);
}

.service-list {
  border-top: 1px solid #444;
}

.service-row {
  align-items: center;
  border-bottom: 1px solid #444;
  display: grid;
  gap: 25px;
  grid-template-columns: 70px 0.8fr 1.2fr 40px;
  min-height: 125px;
  position: relative;
}

.service-row > span {
  color: #888;
  font-size: 11px;
  font-weight: 800;
}

.service-row h3 {
  font-size: clamp(23px, 2.2vw, 33px);
  letter-spacing: -0.04em;
  margin: 0;
}

.service-row p {
  color: #aaa;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  max-width: 440px;
}

.service-row > b {
  font-size: 23px;
}

.service-row::before {
  content: "";
  height: 100%;
  left: -5.5vw;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 180ms ease;
  width: 4px;
}

.service-row:hover::before { opacity: 1; }
.service-cyan::before { background: var(--cyan); }
.service-magenta::before { background: var(--magenta); }
.service-yellow::before { background: var(--yellow); }
.service-black::before { background: white; }

.portfolio {
  padding-bottom: 130px;
  padding-top: 120px;
}

.portfolio-top {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 55px;
}

.portfolio-top h2 {
  font-size: clamp(43px, 5.2vw, 78px);
  margin-top: 38px;
}

.portfolio-aside {
  max-width: 370px;
}

.portfolio-aside > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

.instagram-work-link {
  align-items: center;
  background: var(--ink);
  color: white;
  display: grid;
  gap: 13px;
  grid-template-columns: 38px 1fr 22px;
  margin-top: 22px;
  padding: 15px 17px;
  transition: background 180ms ease, transform 180ms ease;
}

.instagram-work-link:hover {
  background: var(--magenta);
  transform: translateY(-2px);
}

.instagram-mark {
  align-items: center;
  background: linear-gradient(135deg, #6a2fc3, var(--magenta), #ffce55);
  border-radius: 50%;
  display: flex;
  font-size: 18px;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.instagram-work-link > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.instagram-work-link small {
  color: #b8b8b8;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.instagram-work-link strong {
  font-size: 14px;
}

.instagram-work-link b {
  font-size: 18px;
}

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

.work-card:nth-child(2) {
  transform: translateY(36px);
}

.work-visual {
  height: 490px;
  overflow: hidden;
  position: relative;
}

.work-packaging .work-visual { background: #d9d0bd; }
.work-editorial .work-visual { background: #13aade; }
.work-campaign .work-visual { background: #f1d300; }

.visual-piece {
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.18);
  position: absolute;
}

.work-packaging .piece-one {
  background: #f7f1df;
  height: 310px;
  left: 20%;
  top: 60px;
  transform: rotate(-8deg);
  width: 190px;
}

.work-packaging .piece-two {
  background: #22382a;
  border-radius: 45% 45% 8px 8px;
  bottom: 35px;
  height: 280px;
  right: 10%;
  transform: rotate(7deg);
  width: 145px;
}

.work-packaging .piece-three {
  background: #b5cf7c;
  border-radius: 50%;
  height: 150px;
  left: 7%;
  top: 29%;
  width: 150px;
}

.work-editorial .piece-one {
  background: white;
  height: 310px;
  left: 10%;
  top: 65px;
  transform: rotate(-12deg);
  width: 220px;
}

.work-editorial .piece-two {
  background: var(--magenta);
  height: 280px;
  right: 7%;
  top: 105px;
  transform: rotate(9deg);
  width: 195px;
}

.work-editorial .piece-three {
  background: var(--yellow);
  bottom: 30px;
  height: 80px;
  left: 20%;
  transform: rotate(4deg);
  width: 210px;
}

.work-campaign .piece-one {
  background: var(--ink);
  height: 330px;
  left: 18%;
  top: 55px;
  transform: rotate(7deg);
  width: 230px;
}

.work-campaign .piece-two {
  background: var(--magenta);
  border-radius: 50%;
  height: 150px;
  right: 4%;
  top: 28%;
  width: 150px;
}

.work-campaign .piece-three {
  background: white;
  bottom: 32px;
  height: 115px;
  left: 6%;
  transform: rotate(-8deg);
  width: 180px;
}

.work-label {
  color: var(--ink);
  font-size: 42px;
  font-weight: 900;
  left: 27%;
  letter-spacing: -0.08em;
  line-height: 0.85;
  position: absolute;
  top: 130px;
  transform: rotate(-8deg);
  z-index: 3;
}

.work-label small {
  font-family: Georgia, serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
}

.work-editorial .work-label {
  font-size: 44px;
  left: 16%;
  top: 145px;
  transform: rotate(-12deg);
}

.work-campaign .work-label {
  color: white;
  left: 24%;
  top: 140px;
  transform: rotate(7deg);
}

.work-caption {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}

.work-caption span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.work-caption h3 {
  font-size: 21px;
  letter-spacing: -0.03em;
  margin: 7px 0 0;
}

.work-caption b {
  font-size: 20px;
}

.shop {
  background: var(--soft);
  padding-bottom: 110px;
  padding-top: 110px;
}

.shop-title-row {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin: 40px 0 55px;
}

.shop h2 span {
  color: var(--magenta);
}

.shop-title-row > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  max-width: 410px;
}

.filters {
  border-bottom: 1px solid #d6d6d2;
  display: flex;
  gap: 36px;
  margin-bottom: 38px;
  overflow-x: auto;
}

.filters button {
  background: transparent;
  border: 0;
  cursor: pointer;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 800;
  padding: 0 0 15px;
  position: relative;
}

.filters button.active::after {
  background: var(--magenta);
  bottom: -1px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  width: 100%;
}

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

.product-card {
  background: white;
  border: 1px solid transparent;
  min-width: 0;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.product-visual {
  background-color: #ecece8;
  background-image:
    linear-gradient(#deded9 1px, transparent 1px),
    linear-gradient(90deg, #deded9 1px, transparent 1px);
  background-size: 24px 24px;
  height: 275px;
  overflow: hidden;
  position: relative;
}

.product-badge {
  background: white;
  font-size: 9px;
  font-weight: 900;
  left: 14px;
  letter-spacing: 0.08em;
  padding: 8px 10px;
  position: absolute;
  text-transform: uppercase;
  top: 14px;
  z-index: 2;
}

.product-index {
  bottom: 14px;
  font-size: 10px;
  font-weight: 900;
  position: absolute;
  right: 16px;
}

.product-shape {
  height: 78%;
  left: 13%;
  position: absolute;
  top: 14%;
  width: 74%;
}

.product-shape i {
  display: block;
  position: absolute;
}

.shape-tarjetas i:nth-child(1),
.shape-tarjetas i:nth-child(2) {
  background: var(--ink);
  box-shadow: 0 12px 25px rgba(0,0,0,.2);
  height: 92px;
  left: 8%;
  top: 29%;
  transform: rotate(-9deg);
  width: 165px;
}
.shape-tarjetas i:nth-child(2) {
  background: white;
  left: 25%;
  top: 41%;
  transform: rotate(8deg);
}
.shape-tarjetas i:nth-child(3) {
  background: var(--cyan);
  border-radius: 50%;
  height: 52px;
  right: 5%;
  top: 11%;
  width: 52px;
}

.shape-flyers i:nth-child(1),
.shape-flyers i:nth-child(2) {
  background: var(--magenta);
  box-shadow: 0 15px 28px rgba(0,0,0,.18);
  height: 180px;
  left: 17%;
  top: 5%;
  transform: rotate(-7deg);
  width: 125px;
}
.shape-flyers i:nth-child(2) {
  background: var(--yellow);
  left: 38%;
  top: 18%;
  transform: rotate(7deg);
}
.shape-flyers i:nth-child(3) {
  background: var(--ink);
  height: 12px;
  left: 43%;
  top: 47%;
  transform: rotate(7deg);
  width: 95px;
}

.shape-etiquetas i {
  background: var(--yellow);
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 0 8px 15px rgba(0,0,0,.13);
  height: 90px;
  width: 90px;
}
.shape-etiquetas i:nth-child(1) { left: 12%; top: 22%; }
.shape-etiquetas i:nth-child(2) { background: var(--magenta); left: 41%; top: 39%; }
.shape-etiquetas i:nth-child(3) { background: var(--cyan); right: 2%; top: 11%; }

.shape-folletos i:nth-child(1) {
  background: white;
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
  height: 185px;
  left: 20%;
  top: 8%;
  transform: perspective(500px) rotateY(25deg) rotate(-5deg);
  width: 145px;
}
.shape-folletos i:nth-child(2) {
  background: var(--ink);
  height: 185px;
  left: 47%;
  top: 12%;
  transform: perspective(500px) rotateY(-25deg) rotate(5deg);
  width: 100px;
}
.shape-folletos i:nth-child(3) { background: var(--magenta); height: 7px; left: 26%; top: 48%; width: 70px; }

.shape-talonarios i:nth-child(1),
.shape-talonarios i:nth-child(2) {
  background: white;
  border-top: 10px solid var(--cyan);
  box-shadow: 0 12px 25px rgba(0,0,0,.15);
  height: 145px;
  left: 18%;
  top: 18%;
  transform: rotate(-8deg);
  width: 175px;
}
.shape-talonarios i:nth-child(2) { border-top-color: var(--magenta); left: 27%; top: 27%; transform: rotate(6deg); }
.shape-talonarios i:nth-child(3) { border-left: 2px dashed var(--muted); height: 125px; left: 35%; top: 31%; transform: rotate(6deg); }

.shape-banners i:nth-child(1) {
  background: var(--magenta);
  box-shadow: 0 14px 28px rgba(0,0,0,.2);
  height: 185px;
  left: 23%;
  top: 3%;
  width: 120px;
}
.shape-banners i:nth-child(2) { background: var(--yellow); height: 90px; left: 35%; top: 24%; width: 90px; }
.shape-banners i:nth-child(3) { background: var(--ink); bottom: 0; height: 18px; left: 12%; transform: skewX(-34deg); width: 190px; }

.shape-invitaciones i:nth-child(1) {
  background: var(--yellow);
  box-shadow: 0 13px 30px rgba(0,0,0,.18);
  height: 130px;
  left: 14%;
  top: 21%;
  transform: rotate(-9deg);
  width: 185px;
}
.shape-invitaciones i:nth-child(2) {
  background: white;
  height: 118px;
  left: 28%;
  top: 30%;
  transform: rotate(7deg);
  width: 168px;
}
.shape-invitaciones i:nth-child(3) { border: 2px solid var(--magenta); border-radius: 50%; height: 57px; left: 53%; top: 40%; width: 57px; }

.shape-papeleria i:nth-child(1) {
  background: white;
  box-shadow: 0 14px 25px rgba(0,0,0,.14);
  height: 190px;
  left: 11%;
  top: 4%;
  transform: rotate(-5deg);
  width: 140px;
}
.shape-papeleria i:nth-child(2) { background: var(--ink); height: 125px; right: 2%; top: 34%; transform: rotate(8deg); width: 155px; }
.shape-papeleria i:nth-child(3) { background: var(--yellow); height: 45px; left: 21%; top: 20%; transform: rotate(-5deg); width: 45px; }

.product-info {
  padding: 22px 20px 20px;
}

.product-info > span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-info h3 {
  font-size: 21px;
  letter-spacing: -0.04em;
  margin: 8px 0 10px;
}

.product-info p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
  min-height: 40px;
}

.product-meta {
  align-items: end;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 15px;
}

.product-meta small {
  color: var(--muted);
  font-size: 10px;
}

.product-meta strong {
  font-size: 13px;
}

.product-info > button {
  align-items: center;
  background: transparent;
  border: 1px solid var(--ink);
  cursor: pointer;
  display: flex;
  font-size: 11px;
  font-weight: 900;
  justify-content: space-between;
  margin-top: 16px;
  padding: 13px;
  transition: background 150ms ease, color 150ms ease;
  width: 100%;
}

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

.custom-project {
  align-items: center;
  background: var(--yellow);
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  padding: 36px 42px;
}

.custom-project span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.custom-project h3 {
  font-size: clamp(22px, 2.1vw, 32px);
  letter-spacing: -0.04em;
  margin: 7px 0 0;
}

.custom-project > a {
  align-items: center;
  background: var(--ink);
  color: white;
  display: flex;
  font-size: 12px;
  font-weight: 900;
  gap: 45px;
  padding: 18px 20px;
}

.process {
  padding-bottom: 115px;
  padding-top: 115px;
}

.process > h2 {
  margin-top: 36px;
}

.process-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 65px;
}

.process-grid article {
  border: 1px solid var(--line);
  min-height: 320px;
  padding: 28px;
  position: relative;
}

.process-grid article + article {
  border-left: 0;
}

.process-grid article > span {
  font-size: 10px;
  font-weight: 900;
}

.process-icon {
  align-items: center;
  background: var(--soft);
  border-radius: 50%;
  display: flex;
  font-size: 32px;
  height: 90px;
  justify-content: center;
  margin: 48px 0 38px;
  width: 90px;
}

.process-grid article:nth-child(2) .process-icon { background: #f7dbea; }
.process-grid article:nth-child(3) .process-icon { background: #fff4a6; }

.process-grid h3 {
  font-size: 20px;
  margin: 0 0 12px;
}

.process-grid p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

.contact {
  background: var(--ink);
  color: white;
  display: grid;
  gap: 10vw;
  grid-template-columns: 1fr 0.85fr;
  padding-bottom: 110px;
  padding-top: 110px;
}

.contact h2 {
  color: var(--yellow);
  margin: 36px 0 30px;
}

.contact-copy > p {
  color: #aaa;
  font-size: 15px;
  line-height: 1.7;
  max-width: 470px;
}

.whatsapp-link,
.email-link {
  align-items: center;
  border-bottom: 1px solid #444;
  border-top: 1px solid #444;
  display: grid;
  gap: 20px;
  grid-template-columns: 42px 1fr 30px;
  margin-top: 52px;
  max-width: 470px;
  padding: 22px 0;
}

.email-link {
  border-top: 0;
  margin-top: 0;
}

.whatsapp-dot {
  align-items: center;
  background: var(--green);
  border-radius: 50%;
  color: var(--green);
  display: flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.email-symbol {
  align-items: center;
  background: var(--magenta);
  border-radius: 50%;
  color: white;
  display: flex;
  font-size: 18px;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.whatsapp-link > span,
.email-link > span {
  display: flex;
  flex-direction: column;
}

.whatsapp-link small,
.email-link small {
  color: #888;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.whatsapp-link strong,
.email-link strong {
  font-size: 20px;
  margin-top: 4px;
}

.email-link strong {
  font-size: 15px;
}

.contact-form {
  align-self: end;
  display: flex;
  flex-direction: column;
  gap: 27px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form label > span,
.order-data label > span {
  color: #aaa;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #555;
  color: white;
  font-size: 14px;
  outline: none;
  padding: 6px 0 13px;
  resize: none;
}

.contact-form textarea {
  min-height: 90px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--yellow);
}

.button-white {
  align-self: flex-start;
  background: white;
  color: var(--ink);
  margin-top: 8px;
  min-width: 210px;
}

footer {
  background: white;
}

.footer-main {
  align-items: start;
  display: grid;
  grid-template-columns: 1fr 1fr 60px;
  padding-bottom: 70px;
  padding-top: 70px;
}

.footer-brand img {
  height: auto;
  width: 190px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 13px;
  margin: 15px 0 0;
}

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

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links span {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.13em;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.footer-links a {
  font-size: 12px;
  font-weight: 800;
}

.back-top {
  align-items: center;
  border: 1px solid var(--ink);
  display: flex;
  font-size: 18px;
  height: 50px;
  justify-content: center;
  justify-self: end;
  width: 50px;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding-bottom: 25px;
  padding-top: 25px;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}

.modal-overlay {
  align-items: center;
  background: rgba(0, 0, 0, 0.72);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 100;
}

.product-modal {
  background: white;
  max-width: 560px;
  padding: 44px;
  position: relative;
  width: 100%;
}

.close-button {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 29px;
  position: absolute;
  right: 18px;
  top: 12px;
}

.modal-accent {
  display: block;
  height: 6px;
  margin-bottom: 24px;
  width: 54px;
}

.modal-cyan { background: var(--cyan); }
.modal-magenta { background: var(--magenta); }
.modal-yellow { background: var(--yellow); }
.modal-black { background: var(--ink); }

.product-modal > p {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.product-modal h2 {
  font-size: 36px;
  letter-spacing: -0.05em;
  margin: 0 0 8px;
}

.modal-helper {
  color: var(--muted);
  font-size: 13px;
}

.option-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 30px;
}

.option-grid label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.option-grid label > span {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.option-grid select {
  appearance: none;
  background: var(--soft);
  border: 0;
  border-radius: 0;
  font-size: 13px;
  outline: none;
  padding: 15px;
}

.full-option {
  grid-column: 1 / -1;
}

.modal-note {
  align-items: start;
  background: #f4f4f1;
  display: grid;
  gap: 12px;
  grid-template-columns: 22px 1fr;
  margin: 22px 0;
  padding: 14px;
}

.modal-note > span {
  align-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: flex;
  font-size: 10px;
  font-weight: 900;
  height: 20px;
  justify-content: center;
  width: 20px;
}

.modal-note p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  margin: 1px 0 0;
}

.modal-add {
  width: 100%;
}

.drawer-overlay {
  background: rgba(0,0,0,0);
  inset: 0;
  pointer-events: none;
  position: fixed;
  transition: background 220ms ease;
  z-index: 110;
}

.drawer-overlay.is-open {
  background: rgba(0,0,0,.58);
  pointer-events: auto;
}

.cart-drawer {
  background: white;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 510px;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: transform 260ms ease;
  width: 100%;
}

.is-open .cart-drawer {
  transform: translateX(0);
}

.drawer-header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 28px 32px;
}

.drawer-header span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.drawer-header h2 {
  font-size: 28px;
  letter-spacing: -.05em;
  margin: 3px 0 0;
}

.drawer-header button {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 30px;
}

.drawer-content {
  flex: 1;
  overflow-y: auto;
  padding: 25px 32px;
}

.empty-cart {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 65vh;
  text-align: center;
}

.empty-mark {
  display: grid;
  grid-template-columns: repeat(2, 24px);
  margin-bottom: 25px;
}

.empty-mark i { height: 24px; }
.empty-mark i:nth-child(1) { background: var(--cyan); }
.empty-mark i:nth-child(2) { background: var(--magenta); }
.empty-mark i:nth-child(3) { background: var(--yellow); }
.empty-mark i:nth-child(4) { background: var(--ink); }

.empty-cart h3 {
  font-size: 25px;
  letter-spacing: -.04em;
  margin: 0;
}

.empty-cart p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  max-width: 260px;
}

.empty-cart button {
  background: var(--ink);
  border: 0;
  color: white;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  margin-top: 12px;
  padding: 15px 22px;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-item {
  align-items: center;
  border: 1px solid var(--line);
  display: grid;
  gap: 13px;
  grid-template-columns: 58px 1fr 25px;
  padding: 13px;
}

.cart-item-mark {
  align-items: center;
  background: var(--cyan);
  display: flex;
  font-size: 24px;
  font-weight: 900;
  height: 58px;
  justify-content: center;
}

.cart-magenta .cart-item-mark { background: var(--magenta); color: white; }
.cart-yellow .cart-item-mark { background: var(--yellow); }
.cart-black .cart-item-mark { background: var(--ink); color: white; }

.cart-item h3 {
  font-size: 14px;
  margin: 0 0 5px;
}

.cart-item p,
.cart-item span {
  color: var(--muted);
  font-size: 10px;
  margin: 0 0 2px;
}

.cart-item button {
  background: transparent;
  border: 0;
  color: #999;
  cursor: pointer;
  font-size: 21px;
}

.order-data {
  border-top: 1px solid var(--line);
  margin-top: 25px;
  padding-top: 24px;
}

.order-data h3 {
  font-size: 16px;
  margin: 0 0 18px;
}

.order-data label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}

.order-data input,
.order-data select,
.order-data textarea {
  background: var(--soft);
  border: 0;
  font-size: 12px;
  outline: none;
  padding: 13px;
  resize: none;
}

.order-data select {
  color: var(--ink);
  width: 100%;
}

.order-data textarea {
  min-height: 70px;
}

.drawer-footer {
  border-top: 1px solid var(--line);
  padding: 20px 32px 26px;
}

.drawer-footer p {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 0 15px;
}

.drawer-footer p span {
  color: var(--muted);
  font-size: 11px;
}

.drawer-footer p strong {
  font-size: 15px;
}

.drawer-footer button {
  align-items: center;
  background: var(--green);
  border: 0;
  color: #082c16;
  cursor: pointer;
  display: flex;
  font-size: 12px;
  font-weight: 900;
  justify-content: space-between;
  padding: 17px 18px;
  width: 100%;
}

.drawer-footer small {
  color: var(--muted);
  display: block;
  font-size: 9px;
  margin-top: 10px;
  text-align: center;
}

.floating-whatsapp {
  align-items: center;
  background: var(--green);
  border: 0;
  bottom: 22px;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  cursor: pointer;
  display: none;
  font-size: 11px;
  font-weight: 900;
  gap: 10px;
  padding: 11px 12px 11px 16px;
  position: fixed;
  right: 18px;
  z-index: 45;
}

.floating-whatsapp strong {
  align-items: center;
  background: white;
  border-radius: 50%;
  display: flex;
  height: 24px;
  justify-content: center;
  width: 24px;
}

.toast {
  align-items: center;
  background: var(--ink);
  bottom: 25px;
  color: white;
  display: flex;
  font-size: 12px;
  font-weight: 800;
  gap: 12px;
  left: 50%;
  padding: 14px 20px;
  position: fixed;
  transform: translateX(-50%);
  z-index: 130;
}

.toast span {
  align-items: center;
  background: var(--green);
  border-radius: 50%;
  color: var(--ink);
  display: flex;
  height: 20px;
  justify-content: center;
  width: 20px;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 150px 1fr 150px;
    padding: 0 4vw;
  }

  .site-header nav { gap: 21px; }

  .hero {
    grid-template-columns: 1fr 0.9fr;
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .hero-proof { max-width: 500px; }

  .product-grid { grid-template-columns: repeat(3, 1fr); }

  .section-shell { padding-left: 4vw; padding-right: 4vw; }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    height: 78px;
  }

  .brand {
    height: 64px;
    width: 118px;
  }

  .menu-button {
    background: transparent;
    border: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-right: 20px;
    padding: 10px;
  }

  .menu-button span {
    background: var(--ink);
    height: 2px;
    width: 24px;
  }

  .site-header nav {
    background: white;
    border-top: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(0,0,0,.1);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 12px 4vw 24px;
    position: absolute;
    top: 78px;
    width: 100%;
  }

  .site-header nav.nav-open { display: flex; }

  .site-header nav a {
    border-bottom: 1px solid var(--line);
    padding: 15px 0;
  }

  .cart-button span { display: none; }

  .cart-button {
    background: transparent;
    padding: 0;
  }

  .hero {
    gap: 55px;
    grid-template-columns: 1fr;
    padding-bottom: 70px;
    padding-top: 70px;
  }

  .hero-art {
    height: 650px;
    max-height: none;
    width: 100%;
  }

  .about-content {
    gap: 35px;
    grid-template-columns: 1fr;
  }

  .about-copy {
    max-width: 600px;
  }

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

  .values div:nth-child(2) { border-right: 0; }
  .values div:nth-child(3) { padding-left: 0; }

  .section-heading {
    gap: 35px;
    grid-template-columns: 1fr;
  }

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

  .work-card:nth-child(2) { transform: none; }
  .work-card:last-child { grid-column: 1 / -1; }

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

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

  .process-grid article + article {
    border-left: 1px solid var(--line);
    border-top: 0;
  }

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

  .contact-form { max-width: 650px; }
}

@media (max-width: 620px) {
  .site-header,
  .section-shell,
  .hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-header { padding-left: 14px; padding-right: 14px; }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .hero h1 {
    font-size: 56px;
    line-height: .87;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-proof {
    gap: 20px;
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .hero-proof div {
    border-bottom: 1px solid var(--line);
    padding-bottom: 13px;
  }

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

  .paper-middle,
  .paper-front {
    padding: 20px;
  }

  .paper-front { left: 7%; width: 58%; }
  .paper-middle { left: 35%; width: 58%; }
  .paper-back { left: 15%; width: 59%; }
  .hero-sticker { height: 70px; width: 70px; }

  .about,
  .portfolio,
  .shop,
  .process,
  .contact,
  .services {
    padding-bottom: 80px;
    padding-top: 80px;
  }

  .about-content h2,
  .section-heading h2,
  .portfolio-top h2,
  .shop h2,
  .process h2,
  .contact h2 {
    font-size: 45px;
  }

  .values {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }

  .values div,
  .values div + div,
  .values div:nth-child(3) {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    padding: 25px 0;
  }

  .service-row {
    gap: 10px;
    grid-template-columns: 35px 1fr 25px;
    padding: 24px 0;
  }

  .service-row p {
    grid-column: 2 / 4;
    grid-row: 2;
  }

  .portfolio-top {
    align-items: start;
    flex-direction: column;
    gap: 28px;
  }

  .portfolio-aside {
    max-width: 390px;
    width: 100%;
  }

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

  .work-card:last-child { grid-column: auto; }
  .work-visual { height: 420px; }

  .shop-title-row {
    align-items: start;
    flex-direction: column;
    gap: 25px;
  }

  .filters {
    gap: 26px;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .product-visual { height: 320px; }

  .custom-project {
    align-items: start;
    flex-direction: column;
    gap: 25px;
    padding: 30px 24px;
  }

  .custom-project > a { width: 100%; }

  .process-grid article { min-height: 280px; }

  .footer-main {
    gap: 45px;
    grid-template-columns: 1fr 50px;
  }

  .footer-links {
    gap: 35px;
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .back-top {
    grid-column: 2;
    grid-row: 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .product-modal {
    max-height: calc(100vh - 30px);
    overflow-y: auto;
    padding: 34px 22px 24px;
  }

  .option-grid { grid-template-columns: 1fr; }
  .full-option { grid-column: auto; }

  .drawer-header,
  .drawer-content,
  .drawer-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .floating-whatsapp { display: flex; }
  .toast { max-width: calc(100% - 30px); width: max-content; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .brand-marquee div { animation: none; }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
