:root {
  --ink: #08080b;
  --paper: #f8f5f0;
  --pink: #ff2aa1;
  --blue: #173dff;
  --orange: #ff7417;
  --gold: #f4bd38;
  --muted: #aaa5af;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--ink);
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
}
a {
  color: inherit;
}
.site-header {
  height: 94px;
  padding: 12px clamp(20px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ffffff1f;
  position: relative;
  z-index: 2;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.brand img {
  width: 66px;
  height: 66px;
  object-fit: contain;
}
.header-cta {
  padding: 13px 20px;
  border: 1px solid var(--pink);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s;
}
.header-cta:hover,
.header-cta:focus-visible {
  background: var(--pink);
  color: #07070a;
}
.shop-intro {
  max-width: 1320px;
  margin: auto;
  padding: clamp(54px, 8vw, 110px) clamp(20px, 5vw, 72px) clamp(36px, 5vw, 70px);
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-end;
  position: relative;
}
.shop-intro:before {
  content: "";
  position: absolute;
  right: 10%;
  top: 0;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, #ff2aa13c, transparent 67%);
  pointer-events: none;
}
.eyebrow,
.product-kicker {
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-size: 0.82rem;
}
.shop-intro h1 {
  font-family: "Syne", sans-serif;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.83;
  letter-spacing: -0.07em;
  margin: 0.24em 0 0.18em;
  background: linear-gradient(
    100deg,
    #fff 15%,
    #ff7bc8 48%,
    #5a72ff 75%,
    #ff9b42
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.intro-copy {
  max-width: 650px;
  color: #cbc7cf;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.6;
}
.seal {
  width: 150px;
  height: 150px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 2px solid var(--orange);
  display: grid;
  place-content: center;
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  line-height: 1.2;
  transform: rotate(8deg);
  box-shadow: 0 0 50px #ff74172c;
}
.seal strong {
  font-family: "Syne";
  font-size: 2.4rem;
  color: var(--orange);
}
.product {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 72px) clamp(90px, 11vw, 150px);
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}
.product-image-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #eee;
  box-shadow: 0 30px 90px #000;
}
.product-image-wrap:after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid #ffffff66;
  border-radius: 28px;
  pointer-events: none;
}
.product-image {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.edition-tag {
  position: absolute;
  z-index: 1;
  top: 20px;
  left: 20px;
  background: var(--pink);
  color: #0b0710;
  padding: 10px 15px;
  font-weight: 900;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  transform: rotate(-2deg);
}
.product-info h2 {
  font-family: "Syne";
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 0.98;
  margin: 0.24em 0;
}
.price {
  font-family: "Syne";
  font-size: 2.2rem;
  color: var(--gold);
  margin: 0.6em 0;
}
.description {
  color: #c8c4cc;
  font-size: 1.08rem;
  line-height: 1.65;
}
.details {
  list-style: none;
  padding: 0;
  margin: 28px 0;
}
.details li {
  padding: 13px 0 13px 28px;
  border-bottom: 1px solid #ffffff18;
  position: relative;
  color: #eeebf1;
}
.details li:before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--pink);
}
.order-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  color: #09070a;
  padding: 19px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 900;
  box-shadow: 0 10px 35px #ff2aa12d;
  transition: transform 0.2s;
}
.order-button:hover,
.order-button:focus-visible {
  transform: translateY(-2px);
}
.square-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  border: 1px solid #ffffff52;
  color: #fff;
  padding: 17px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
  transition: 0.2s;
}
.square-button:hover,
.square-button:focus-visible {
  border-color: #fff;
  background: #ffffff12;
  transform: translateY(-2px);
}
.checkout-note {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.55;
}
.luxury-set {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(70px, 9vw, 125px) clamp(20px, 5vw, 72px);
  border-top: 1px solid #ffffff1f;
}
.luxury-set-heading {
  max-width: 850px;
  margin-bottom: 34px;
}
.luxury-set-heading h2 {
  font-family: "Syne";
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.98;
  margin: 0.2em 0;
}
.luxury-set-heading > p:last-child,
.luxury-order p {
  color: #cbc7cf;
  font-size: 1.05rem;
  line-height: 1.65;
}
.luxury-price {
  color: var(--gold);
  font-family: "Syne";
  font-size: 2.4rem;
  margin: 0.45em 0;
}
.luxury-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.luxury-gallery figure {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #17171b;
  border: 1px solid #ffffff22;
}
.luxury-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.luxury-order {
  margin-top: 24px;
  padding: 26px;
  border: 1px solid #f4bd3852;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 380px);
  align-items: center;
  gap: 28px;
  background: linear-gradient(120deg, #f4bd3810, #ff2aa10b);
}
.luxury-order p {
  margin: 0;
}
.custom-sets {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(70px, 9vw, 125px) clamp(20px, 5vw, 72px);
  border-top: 1px solid #ffffff1f;
}
@media (max-width: 760px) {
  .luxury-gallery,
  .luxury-order {
    grid-template-columns: 1fr;
  }
  .luxury-order {
    padding: 20px;
  }
}
.custom-sets-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 22px;
}
.custom-sets-heading h2 {
  max-width: 820px;
  margin: 0.2em 0 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(2.8rem, 7vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
}
.set-price {
  margin: 0;
  color: var(--gold);
  font-family: "Syne", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  font-weight: 800;
  line-height: 1;
}
.set-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  margin: 34px 0 30px;
}
.set-intro p {
  margin: 0;
  color: #d3ced7;
  font-size: 1.08rem;
  line-height: 1.65;
}
.similar-note {
  padding: 20px 22px;
  border-left: 4px solid var(--pink);
  border-radius: 0 14px 14px 0;
  background: #ffffff0c;
}
.similar-note strong {
  color: #fff;
}
.set-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.set-card {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid #ffffff24;
  border-radius: 20px;
  background: #17171d;
}
.set-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.set-card figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 12px 14px;
  border: 1px solid #ffffff26;
  border-radius: 10px;
  background: #08080bd9;
  color: #fff;
  font-weight: 800;
  backdrop-filter: blur(8px);
}
.set-card-wide {
  grid-row: span 2;
}
.set-card-wide img {
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
}
.set-order-panel {
  display: grid;
  grid-template-columns: 1fr minmax(250px, 370px);
  gap: 30px;
  align-items: center;
  margin-top: 22px;
  padding: clamp(25px, 4vw, 40px);
  border-radius: 22px;
  background: var(--paper);
  color: var(--ink);
}
.set-order-panel h3 {
  margin: 0.25em 0 0.35em;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.05;
}
.set-order-panel p:last-child {
  margin-bottom: 0;
  line-height: 1.6;
}
.football-prints {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(70px, 9vw, 125px) clamp(20px, 5vw, 72px);
  border-top: 1px solid #ffffff1f;
}
.football-prints-heading { max-width: 780px; margin-bottom: 34px; }
.football-prints-heading h2 {
  margin: 0.15em 0 0.25em;
  font-family: "Syne", sans-serif;
  font-size: clamp(2.8rem, 7vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
}
.football-prints-heading > p:last-child { color: #d3ced7; font-size: 1.08rem; line-height: 1.65; }
.football-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.football-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid #ffffff2b;
  border-radius: 24px;
  background: #17171d;
  box-shadow: 0 28px 80px #00000070;
}
.watermarked-preview { position: relative; overflow: hidden; background: #111; }
.watermarked-preview img { display: block; width: 100%; aspect-ratio: 2 / 3; object-fit: cover; }
.watermarked-preview:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 42%, #0000002f 50%, transparent 58%);
  pointer-events: none;
}
.watermark {
  position: absolute;
  z-index: 1;
  left: 50%;
  width: max-content;
  transform: translate(-50%, -50%) rotate(-29deg);
  color: #fff;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.2rem, 4.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: 0.13em;
  text-shadow: 0 2px 8px #000;
  opacity: 0.52;
  pointer-events: none;
  user-select: none;
}
.watermark-one { top: 26%; }
.watermark-two { top: 51%; }
.watermark-three { top: 76%; }
.football-card figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
}
.football-card figcaption div { display: grid; gap: 4px; }
.football-card figcaption strong { font-size: 1.08rem; }
.football-card figcaption span { color: var(--muted); font-size: 0.9rem; }
.football-card figcaption a { flex: 0 0 auto; color: var(--gold); font-weight: 800; text-decoration: none; }
.football-card figcaption a:hover,
.football-card figcaption a:focus-visible { text-decoration: underline; }
.print-services {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(70px, 9vw, 125px) clamp(20px, 5vw, 72px);
  border-top: 1px solid #ffffff1f;
}
.services-heading {
  max-width: 820px;
  margin-bottom: 42px;
}
.services-heading h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  margin: 0.2em 0 0.3em;
}
.services-heading > p:last-child {
  color: #cbc7cf;
  font-size: 1.1rem;
  line-height: 1.6;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 22px;
}
.price-card {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid #ffffff24;
  border-radius: 24px;
  background: linear-gradient(145deg, #17171d, #0d0d11);
}
.price-card::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -75px;
  top: -85px;
  border-radius: 50%;
  background: radial-gradient(circle, #f4bd3845, transparent 68%);
}
.card-number {
  color: var(--gold);
  font-family: "Syne", sans-serif;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.price-card h3 {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin: 0.35em 0;
}
.card-note {
  color: var(--muted);
  margin: 0 0 18px;
}
.price-list {
  margin: 0;
}
.price-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid #ffffff18;
}
.price-list dt {
  color: #e5e1e8;
}
.price-list dd {
  margin: 0;
  color: var(--gold);
  font-weight: 900;
  white-space: nowrap;
}
.shirt-prices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.shirt-prices-single {
  grid-template-columns: 1fr;
}
.shirt-prices h4 {
  min-height: 44px;
  margin: 8px 0 10px;
  color: #ff7bc8;
  font-size: 1rem;
  line-height: 1.35;
}
.service-details {
  margin-top: 22px;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 24px;
  background: var(--paper);
  color: var(--ink);
}
.service-details h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.8rem;
  margin: 0 0 8px;
}
.service-details p {
  line-height: 1.6;
}
.service-details ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  padding: 22px 0;
  margin: 20px 0;
  list-style: none;
  border-block: 1px solid #08080b24;
}
.service-details li::before {
  content: "✦";
  color: var(--pink);
  margin-right: 9px;
}
.service-policy {
  font-weight: 800;
}
.payment-process {
  margin: 30px 0;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 18px;
  background: var(--ink);
  color: #fff;
}
.payment-process h3 {
  margin: 0.3em 0 0.8em;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}
.payment-process ol {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: payment-step;
}
.payment-process li {
  counter-increment: payment-step;
  min-width: 0;
  padding-top: 15px;
  border-top: 2px solid var(--gold);
}
.payment-process li::before {
  content: "0" counter(payment-step);
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-family: "Syne", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
}
.payment-process li strong,
.payment-process li span {
  display: block;
}
.payment-process li strong {
  margin-bottom: 7px;
}
.payment-process li span {
  color: #bdb8c2;
  font-size: 0.92rem;
  line-height: 1.5;
}
.services-cta {
  max-width: 420px;
  margin-top: 22px;
}
.promise {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(70px, 10vw, 135px)
    max(clamp(20px, 5vw, 72px), calc((100vw - 1176px) / 2));
  position: relative;
  overflow: hidden;
}
.promise:after {
  content: "MM";
  position: absolute;
  right: -0.05em;
  bottom: -0.3em;
  font-family: "Syne";
  font-size: clamp(15rem, 35vw, 35rem);
  font-weight: 800;
  color: #173dff0c;
  line-height: 1;
  pointer-events: none;
}
.promise > p {
  color: var(--blue);
  font-weight: 900;
  letter-spacing: 0.2em;
}
.promise h2 {
  font-family: "Syne";
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  margin: 0.35em 0 0.8em;
  position: relative;
  z-index: 1;
}
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.promise-grid div {
  border-top: 3px solid var(--ink);
  padding-top: 18px;
  display: flex;
  gap: 18px;
  align-items: center;
}
.promise-grid strong {
  color: var(--pink);
  font-family: "Syne";
  font-size: 1.6rem;
}
.promise-grid span {
  font-weight: 800;
}
footer {
  padding: 48px clamp(20px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1.5fr 1fr auto;
  gap: 30px;
  align-items: end;
  border-top: 5px solid;
  border-image: linear-gradient(90deg, var(--pink), var(--orange), var(--blue))
    1;
  color: #aaa5af;
}
footer strong {
  color: #fff;
  font-family: "Syne";
  font-size: 1.35rem;
}
.socials {
  display: flex;
  gap: 24px;
}
.socials a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.socials a:hover {
  text-decoration: underline;
}
footer p {
  margin: 0;
  font-size: 0.84rem;
}
@media (max-width: 820px) {
  .site-header {
    height: 78px;
  }
  .brand img {
    width: 52px;
    height: 52px;
  }
  .brand span {
    display: none;
  }
  .header-cta {
    font-size: 0.88rem;
  }
  .shop-intro {
    align-items: flex-start;
  }
  .seal {
    width: 105px;
    height: 105px;
  }
  .product {
    grid-template-columns: 1fr;
  }
  .pricing-grid,
  .shirt-prices,
  .set-intro,
  .set-order-panel {
    grid-template-columns: 1fr;
  }
  .set-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .football-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .set-card-wide {
    grid-row: auto;
  }
  .set-card-wide img {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }
  .shirt-prices h4 {
    min-height: auto;
  }
  .service-details ul {
    grid-template-columns: 1fr;
  }
  .payment-process ol {
    grid-template-columns: 1fr;
  }
  .payment-process li {
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 12px;
  }
  .payment-process li::before {
    grid-row: 1 / 3;
    margin: 0;
  }
  .product-image {
    aspect-ratio: 1/1.1;
  }
  .promise-grid {
    grid-template-columns: 1fr;
  }
  .promise-grid div {
    padding-bottom: 12px;
  }
  footer {
    grid-template-columns: 1fr;
  }
  .socials {
    order: 2;
  }
  footer p {
    order: 3;
  }
}
@media (max-width: 520px) {
  .shop-intro {
    display: block;
  }
  .seal {
    position: absolute;
    right: 22px;
    top: 42px;
    opacity: 0.8;
  }
  .shop-intro h1 {
    font-size: 4rem;
    max-width: 320px;
  }
  .product-info h2 {
    font-size: 2.65rem;
  }
  .product-image-wrap {
    border-radius: 18px;
  }
  .product-image-wrap:after {
    border-radius: 18px;
  }
  .custom-sets-heading {
    display: block;
  }
  .set-price {
    margin-top: 18px;
  }
  .set-gallery {
    grid-template-columns: 1fr;
  }
  .football-gallery {
    grid-template-columns: 1fr;
  }
  .football-card figcaption {
    align-items: flex-start;
    flex-direction: column;
  }
}
