/* =========================================================================
   Prishtina Sneaker Culture — homepage campaign layout
   Loaded on the front page only, on top of main.css.
   ========================================================================= */

:root {
  --campaign: #edff00;
  --display-tight: -0.045em;
}

/* ------------------------------------------------ shared homepage typography */

.kicker {
  font-size: 10.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .2em; color: var(--ink-soft); margin: 0 0 10px;
}
.kicker--light { color: rgba(255,255,255,.75); }

.display {
  font-size: clamp(26px, 3.2vw, 44px); font-weight: 700;
  letter-spacing: var(--display-tight); line-height: 1; margin: 0;
}
.display--plain { margin-bottom: 26px; }

.arrowlink {
  font-size: 13px; font-weight: 600; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 10px;
}
.arrowlink span { transition: transform .25s var(--ease); }
.arrowlink:hover span { transform: translateX(5px); }

.underlink {
  font-size: 14px; font-weight: 600; display: inline-block;
  border-bottom: 2px solid currentColor; padding-bottom: 2px;
}
.underlink--light { color: #fff; }

.rail__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 30px; flex-wrap: wrap;
}

/* ------------------------------------------------------------- campaign hero */

.campaign { background: var(--campaign); color: var(--ink); overflow: hidden; }
.campaign__inner { padding-block: clamp(34px, 4.5vw, 62px); }

.campaign__headline {
  font-size: clamp(44px, 11.4vw, 172px);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: var(--display-tight); line-height: .84;
  margin: 0 0 clamp(20px, 3vw, 40px);
}

.campaign__row {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto minmax(160px, 1.15fr);
  align-items: center; gap: clamp(16px, 3vw, 52px);
}

.campaign__lead {
  margin: 0; text-align: right;
  font-size: clamp(13px, 1.5vw, 21px); font-weight: 700;
  text-transform: uppercase; line-height: 1.22; letter-spacing: -0.01em;
}

.campaign__figure {
  margin: 0; display: flex; align-items: flex-start; justify-content: center;
  font-size: clamp(78px, 17vw, 252px); font-weight: 800;
  letter-spacing: -0.055em; line-height: .8;
}
.campaign__pct { font-size: .42em; line-height: 1; margin-top: .06em; }
.campaign__off {
  font-size: .2em; font-style: normal; font-weight: 800;
  text-transform: uppercase; align-self: flex-end;
  margin-bottom: .22em; margin-left: .06em;
}

.campaign__brands {
  margin: 0;
  font-size: clamp(13px, 1.55vw, 24px); font-weight: 700;
  text-transform: uppercase; line-height: 1.22; letter-spacing: -0.01em;
}

.campaign__foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; margin-top: clamp(24px, 3.4vw, 48px);
}
.campaign__mark {
  font-size: clamp(20px, 2.6vw, 40px); font-weight: 800; font-style: italic;
  text-transform: uppercase; letter-spacing: -0.035em;
}
.campaign__cta { flex: 0 0 auto; }
.campaign__until {
  font-size: clamp(12px, 1.2vw, 17px); font-weight: 700;
  text-transform: uppercase; letter-spacing: .02em;
}

/* --------------------------------------------------------------------- ticker */

.ticker { background: var(--ink); color: #fff; overflow: hidden; padding: 13px 0; }
.ticker__track {
  display: flex; align-items: center; width: max-content;
  animation: psc-ticker 48s linear infinite;
}
.ticker__item {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 0 34px; white-space: nowrap;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
}
.ticker__dot { width: 8px; height: 8px; flex: 0 0 8px; }
.ticker__dot--hot { background: var(--sale); }
.ticker__dot--ink { background: #fff; }

@keyframes psc-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker:hover .ticker__track { animation-play-state: paused; }

@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

/* ------------------------------------------------------------ editorial split */

.feature { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.feature__media {
  position: relative; min-height: clamp(360px, 46vw, 660px); background: var(--bg-alt);
}
.feature__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature__body {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(32px, 5vw, 86px);
}
.feature__title {
  font-size: clamp(30px, 3.9vw, 56px); font-weight: 700;
  letter-spacing: var(--display-tight); line-height: 1.03; margin: 0 0 22px;
}
.feature__title em { font-style: italic; }
.feature__text {
  font-size: 15px; line-height: 1.62; color: var(--ink-soft);
  max-width: 46ch; margin: 0 0 28px;
}

/* ----------------------------------------------------------------------- rail */

.rail { position: relative; }
.rail__track {
  display: grid; grid-auto-flow: column; grid-auto-columns: calc(25% - .75px);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none;
}
.rail__track::-webkit-scrollbar { display: none; }
.rail__track > * { scroll-snap-align: start; min-width: 0; }

.rail__nav { display: flex; justify-content: flex-end; gap: 1px; margin-top: 22px; }
.rail__btn {
  width: 46px; height: 44px; border: 1px solid var(--line); background: #fff;
  cursor: pointer; font-size: 20px; line-height: 1;
  display: grid; place-items: center;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.rail__btn:hover:not(:disabled) { background: var(--ink); color: #fff; border-color: var(--ink); }
.rail__btn:disabled { opacity: .3; cursor: default; }

/* -------------------------------------------------------------- collab block */

.collab {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 2.4vw, 34px); align-items: stretch;
}
.collab__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
  align-content: start;
}
.collab__panel {
  position: relative; overflow: hidden; display: block;
  min-height: clamp(320px, 34vw, 560px); background: var(--ink);
}
.collab__panel img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .86; transition: transform .7s var(--ease);
}
.collab__panel:hover img { transform: scale(1.045); }
.collab__body {
  position: absolute; inset: auto 0 0 0;
  display: flex; flex-direction: column; align-items: flex-start;
  padding: clamp(26px, 3vw, 46px); color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,.28) 55%, transparent);
}
.collab__title {
  font-size: clamp(26px, 2.9vw, 44px); font-weight: 700;
  letter-spacing: var(--display-tight); line-height: 1.04; margin-bottom: 12px;
}
.collab__text {
  font-size: 14px; line-height: 1.6; max-width: 40ch;
  margin-bottom: 20px; opacity: .92;
}

/* ------------------------------------------------------------ highlight tiles */

.hl-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(10px, 1.2vw, 18px); }
.hl {
  position: relative; display: block; overflow: hidden;
  aspect-ratio: 1 / 1; background: var(--bg-alt);
}
.hl img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .7s var(--ease);
}
.hl:hover img { transform: scale(1.05); }
.hl__body {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  gap: 16px; padding: 30px 22px 34px; text-align: center; color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,.62), transparent 62%);
}
.hl__title {
  font-size: clamp(15px, 1.5vw, 21px); font-weight: 700;
  text-transform: uppercase; line-height: 1.15;
}
.hl__cta {
  background: #fff; color: var(--ink);
  font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  padding: 11px 20px; transition: background .2s var(--ease), color .2s var(--ease);
}
.hl:hover .hl__cta { background: var(--ink); color: #fff; }

/* --------------------------------------------------------------------- stories */

.stories { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.2vw, 34px); }
.story__media {
  position: relative; display: block; overflow: hidden;
  aspect-ratio: 1 / 1; background: var(--bg-alt);
}
.story__media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .7s var(--ease);
}
.story__media:hover img { transform: scale(1.04); }
.story__tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: #fff; color: var(--ink);
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .13em;
  padding: 7px 12px;
}
.story__title {
  font-size: clamp(19px, 1.9vw, 26px); font-weight: 700;
  letter-spacing: -0.02em; margin: 20px 0 8px;
}
.story__title a { border-bottom: 2px solid currentColor; padding-bottom: 2px; }
.story__text { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; margin: 0; max-width: 42ch; }

/* ------------------------------------------------------------- statement band */

.statement { background: var(--ink); color: #fff; padding-block: clamp(70px, 11vw, 168px); }
.statement__quote {
  margin: 0 0 26px; max-width: 20ch;
  font-size: clamp(32px, 5.2vw, 76px); font-weight: 700;
  letter-spacing: var(--display-tight); line-height: 1.03;
}
.statement__by {
  margin: 0; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .2em; color: rgba(255,255,255,.55);
}

/* ----------------------------------------------------------------- brand wall */

.brandwall {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 1px; background: var(--line); border-block: 1px solid var(--line);
}
.brandwall__item {
  background: #fff; min-height: clamp(180px, 17vw, 240px);
  padding: 30px 22px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.brandwall__item:hover { background: var(--ink); color: #fff; }
.brandwall__name {
  font-size: clamp(17px, 1.7vw, 25px); font-weight: 700;
  text-transform: uppercase; letter-spacing: -0.02em; line-height: 1.08;
}
.brandwall__count {
  font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .13em;
  color: var(--muted);
}
.brandwall__item:hover .brandwall__count { color: rgba(255,255,255,.66); }

/* -------------------------------------------------------- homepage responsive */

@media (max-width: 1100px) {
  .hl-grid     { grid-template-columns: repeat(2, 1fr); }
  .brandwall   { grid-template-columns: repeat(3, 1fr); }
  .rail__track { grid-auto-columns: calc(33.3333% - .67px); }
}

@media (max-width: 860px) {
  .feature     { grid-template-columns: 1fr; }
  .collab      { grid-template-columns: 1fr; }
  .stories     { grid-template-columns: 1fr; }
  .rail__track { grid-auto-columns: calc(50% - .5px); }

  .campaign__row {
    grid-template-columns: 1fr;
    justify-items: center; text-align: center; gap: 14px;
  }
  .campaign__lead   { text-align: center; }
  .campaign__figure { justify-content: center; }
  .campaign__foot   { justify-content: center; text-align: center; }
}

@media (max-width: 560px) {
  .hl-grid      { grid-template-columns: 1fr; }
  .brandwall    { grid-template-columns: repeat(2, 1fr); }
  .rail__track  { grid-auto-columns: calc(80% - .5px); }
  .collab__grid { grid-template-columns: repeat(2, 1fr); }
  .statement__quote { max-width: none; }
}

/* ------------------------------------------------------------------ touch */

@media (hover: none) {
  /* The section CTAs are 13px text links a cursor can hit precisely and a
     finger cannot. Padding buys the tap height without moving the type. */
  .arrowlink { padding-block: 12px; }
  .underlink { padding-bottom: 10px; }
}
