/* ==========================================================
   FONT
   ========================================================== */
@import url('https://fonts.googleapis.com/css2?family=Archivo+Narrow:wght@400;500;600;700;800&display=swap');

/* ==========================================================
   TOKENS
   ========================================================== */
:root {
  --pink: #ff1493;
  --black: #0a0a0a;
  --white: #f5f5f5;
  --font: "Archivo Narrow", "Arial Narrow", Arial, sans-serif;
  --edge: clamp(20px, 4vw, 64px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--pink);
  color: var(--black);
  font-family: var(--font);
  font-stretch: condensed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

::selection {
  background: var(--black);
  color: var(--pink);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ==========================================================
   TICKER
   ========================================================== */
.ticker {
  border-bottom: 3px solid var(--black);
  overflow: hidden;
  white-space: nowrap;
  background: var(--black);
  padding: 6px 0;
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: scroll-left 18s linear infinite;
  will-change: transform;
}

.ticker__item {
  display: block;
  flex: 0 0 auto;
  padding-right: 0;
  color: var(--pink);
  font-size: clamp(11px, 1.4vw, 14px);
  font-weight: bold;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes scroll-left {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

/* ==========================================================
   HEADER
   ========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--edge);
  background: var(--pink);
  border-bottom: 3px solid var(--black);
}

.site-header__mark {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: -0.02em;
}

.site-header__nav {
  display: flex;
  gap: clamp(16px, 3vw, 40px);
}

.site-header__nav a,
.mobile-menu a {
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.04em;
  position: relative;
}

.site-header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 3px;
  background: var(--black);
  transition: width 0.18s ease;
}

.site-header__nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: var(--black);
  color: var(--pink);
  border: none;
  font-family: var(--font);
  font-weight: bold;
  font-size: 14px;
  padding: 8px 14px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--pink);
  border-bottom: 3px solid var(--black);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 18px var(--edge);
  border-top: 2px solid var(--black);
  font-size: 20px;
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: var(--edge);
  border-bottom: 3px solid var(--black);
  position: relative;
}

.hero__headline {
  font-size: clamp(80px, 22vw, 320px);
  line-height: 0.82;
  font-weight: bold;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.hero__sub {
  margin-top: clamp(16px, 3vw, 28px);
  font-size: clamp(14px, 1.6vw, 20px);
  font-weight: bold;
  text-transform: lowercase;
}

.hero__scroll {
  position: absolute;
  bottom: var(--edge);
  right: var(--edge);
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--black);
  padding: 10px 16px;
  transition: background 0.15s ease, color 0.15s ease;
}

.hero__scroll:hover {
  background: var(--black);
  color: var(--pink);
}

/* ==========================================================
   STATEMENT STRIP
   ========================================================== */
.strip {
  background: var(--black);
  color: var(--pink);
  padding: 22px var(--edge);
  border-bottom: 3px solid var(--black);
}

.strip p {
  font-size: clamp(16px, 2.4vw, 28px);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

/* ==========================================================
   MANIFESTO
   ========================================================== */
.manifesto {
  padding: clamp(60px, 10vw, 140px) var(--edge);
  border-bottom: 3px solid var(--black);
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.1em;
  border: 2px solid var(--black);
  padding: 4px 10px;
  margin-bottom: clamp(24px, 4vw, 48px);
}

.manifesto__text {
  font-size: clamp(24px, 4.4vw, 56px);
  font-weight: bold;
  line-height: 1.05;
  letter-spacing: -0.01em;
  max-width: 900px;
  text-transform: lowercase;
}

.manifesto__text + .manifesto__text {
  margin-top: clamp(30px, 5vw, 60px);
}

.manifesto__text--right {
  margin-left: auto;
  text-align: right;
}

/* ==========================================================
   BIG LINE / SIGNATURE MOMENT
   ========================================================== */
.bigline {
  padding: clamp(70px, 14vw, 180px) var(--edge);
  border-bottom: 3px solid var(--black);
  text-align: center;
}

.bigline p {
  font-size: clamp(48px, 10vw, 160px);
  font-weight: bold;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

/* ==========================================================
   WORK GRID
   ========================================================== */
.work {
  padding: clamp(60px, 10vw, 140px) var(--edge);
  border-bottom: 3px solid var(--black);
}

.work__grid {
  margin-top: clamp(24px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 3px solid var(--black);
  border-left: 3px solid var(--black);
}

.work__item {
  border-right: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
  padding: clamp(28px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.15s ease, color 0.15s ease;
  min-height: 220px;
  justify-content: space-between;
}

.work__item:hover {
  background: var(--black);
  color: var(--pink);
}

.work__num {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.work__name {
  font-size: clamp(24px, 3.4vw, 40px);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.work__meta {
  font-size: 13px;
  font-weight: bold;
  text-transform: lowercase;
  opacity: 0.75;
}

/* ==========================================================
   FULL BLEED STATEMENT
   ========================================================== */
.fullbleed {
  background: var(--black);
  color: var(--pink);
  padding: clamp(70px, 14vw, 180px) var(--edge);
  border-bottom: 3px solid var(--black);
  text-align: center;
}

.fullbleed p {
  font-size: clamp(44px, 9vw, 140px);
  font-weight: bold;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

/* ==========================================================
   CONTACT
   ========================================================== */
.contact {
  padding: clamp(70px, 12vw, 160px) var(--edge);
  border-bottom: 3px solid var(--black);
}

.contact__headline {
  margin-top: clamp(20px, 4vw, 36px);
  font-size: clamp(48px, 11vw, 180px);
  font-weight: bold;
  line-height: 0.86;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.contact__button {
  display: inline-block;
  margin-top: clamp(30px, 5vw, 56px);
  background: var(--black);
  color: var(--pink);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: bold;
  padding: 18px 30px;
  border: 3px solid var(--black);
  transition: background 0.15s ease, color 0.15s ease;
}

.contact__button:hover {
  background: var(--pink);
  color: var(--black);
}

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  padding: 22px var(--edge);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* ==========================================================
   HERO — SHORTER VARIANT FOR SUB-PAGES
   ========================================================== */
.hero--tall {
  min-height: 55vh;
}

/* ==========================================================
   FACTS LIST (ABOUT / CONTACT PAGES)
   ========================================================== */
.facts {
  padding: clamp(60px, 10vw, 140px) var(--edge);
  border-bottom: 3px solid var(--black);
}

.facts__list {
  list-style: none;
  margin-top: clamp(24px, 4vw, 48px);
  border-top: 3px solid var(--black);
}

.facts__list li {
  display: grid;
  grid-template-columns: minmax(140px, 200px) 1fr;
  column-gap: clamp(20px, 4vw, 48px);
  align-items: baseline;
  padding: clamp(22px, 3.5vw, 36px) 0;
  border-bottom: 3px solid var(--black);
}

.facts__label {
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-top: 4px;
}

.facts__value {
  font-size: clamp(20px, 2.6vw, 32px);
  font-weight: 700;
  line-height: 1.15;
  text-transform: lowercase;
}

@media (max-width: 720px) {
  .facts__list li {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }
}

/* ==========================================================
   BLOG LIST
   ========================================================== */
.blog-list {
  padding: clamp(60px, 10vw, 140px) var(--edge);
  border-bottom: 3px solid var(--black);
}

.blog-list__item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 28px;
  padding: clamp(24px, 4vw, 40px) 0;
  border-top: 3px solid var(--black);
  transition: background 0.15s ease, color 0.15s ease, padding-left 0.15s ease;
}

.blog-list__item:last-child {
  border-bottom: 3px solid var(--black);
}

.blog-list__item:hover {
  background: var(--black);
  color: var(--pink);
  padding-left: 16px;
}

.blog-list__date {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.08em;
  min-width: 90px;
}

.blog-list__title {
  flex: 1 1 100%;
  font-size: clamp(24px, 4vw, 48px);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  order: 2;
}

.blog-list__excerpt {
  flex: 1 1 100%;
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: bold;
  text-transform: lowercase;
  opacity: 0.75;
  order: 3;
}

@media (min-width: 640px) {
  .blog-list__title {
    flex: 1 1 auto;
    order: 0;
  }
  .blog-list__excerpt {
    flex: 0 0 100%;
    order: 3;
    margin-left: 118px;
  }
}

/* ==========================================================
   BLOG POST PAGE
   ========================================================== */
.post-hero {
  padding: clamp(60px, 10vw, 120px) var(--edge) clamp(40px, 6vw, 60px);
  border-bottom: 3px solid var(--black);
}

.post-hero__back {
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.06em;
  border: 2px solid var(--black);
  padding: 8px 14px;
  margin-bottom: clamp(24px, 4vw, 40px);
  transition: background 0.15s ease, color 0.15s ease;
}

.post-hero__back:hover {
  background: var(--black);
  color: var(--pink);
}

.post-hero__date {
  display: block;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.post-hero__title {
  font-size: clamp(48px, 10vw, 130px);
  font-weight: bold;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.post-body {
  max-width: 820px;
  padding: clamp(50px, 8vw, 100px) var(--edge);
  border-bottom: 3px solid var(--black);
}

.post-body p {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: clamp(24px, 3vw, 36px);
}

.post-body__lede {
  font-size: clamp(22px, 2.6vw, 32px) !important;
  text-transform: lowercase;
}

.post-body__pull {
  font-size: clamp(28px, 4vw, 48px) !important;
  line-height: 1.15 !important;
  text-transform: uppercase;
  border-top: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
  padding: clamp(24px, 4vw, 36px) 0 !important;
  margin: clamp(32px, 5vw, 48px) 0 !important;
}

.post-body__meta {
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: clamp(40px, 6vw, 60px);
}

/* ==========================================================
   WORK PAGE — INFINITE PANNABLE IMAGE CANVAS
   ========================================================== */
.canvas-tile {
  position: absolute;
  overflow: hidden;
  pointer-events: auto;
  transition: transform 0.25s ease;
}

.canvas-tile:hover {
  transform: scale(1.035);
  z-index: 50;
}

.canvas-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 720px) {
  .site-header__nav {
    display: none;
  }
  .menu-toggle {
    display: inline-block;
  }
  .work__grid {
    grid-template-columns: 1fr;
  }
  .manifesto__text--right {
    text-align: left;
    margin-left: 0;
  }
  .hero__scroll {
    position: static;
    margin-top: 40px;
    display: inline-block;
  }
  .hero {
    align-items: flex-start;
  }
}

/* Keyboard focus visibility */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--black);
  outline-offset: 3px;
}
