
}

:root {
  --bg: #070707;
  --surface: #101010;
  --surface-2: #171717;
  --text: #f5f5f5;
  --muted: #929292;
  --line: #292929;
  --white: #fff;
  --black: #000;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='%23n' opacity='.8'/%3E%3C/svg%3E");
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

/* HEADER */

.site-header {
  height: 78px;
  padding: 0 5vw;

  display: flex;
  align-items: center;
  justify-content: space-between;

  position: sticky;
  top: 0;
  z-index: 50;

  background: rgba(7, 7, 7, 0.82);
  backdrop-filter: blur(18px);

  border-bottom: 1px solid var(--line);

  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(7, 7, 7, 0.96);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.logo {
  font-family: "Anton", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 1px;
  white-space: nowrap;
}

.logo span {
  font-family: "Inter", sans-serif;
  font-size: 0.64rem;
  letter-spacing: 3px;
  margin-left: 8px;
  color: #aaa;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;

  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.nav a {
  position: relative;
  padding: 5px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 0;
  height: 1px;

  background: white;

  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.header-shop {
  padding: 11px 17px;
  border: 1px solid white;

  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.header-shop:hover {
  background: white;
  color: black;
  transform: translateY(-2px);
}

.menu-btn {
  display: none;
  background: transparent;
  color: white;
  border: none;
  font-size: 1.7rem;
  cursor: pointer;
}

/* HERO */

.hero {
  min-height: calc(100vh - 78px);

  position: relative;

  display: flex;
  align-items: flex-end;

  padding: 8vw 5vw;

  overflow: hidden;

  background:
    radial-gradient(circle at 75% 25%, #333 0%, transparent 25%),
    radial-gradient(circle at 90% 90%, #191919 0%, transparent 35%),
    linear-gradient(120deg, #080808, #161616 50%, #050505);
}

.hero::before {
  content: "JC";

  position: absolute;
  right: -4vw;
  bottom: -9vw;

  font-family: "Anton", sans-serif;
  font-size: 38vw;
  line-height: 0.7;

  color: rgba(255, 255, 255, 0.025);

  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.45),
    transparent 60%
  );

  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;

  max-width: 900px;

  animation: heroEnter 1s ease forwards;
}

.eyebrow {
  margin-bottom: 15px;

  color: #999;

  font-size: 0.66rem;
  font-weight: 800;

  letter-spacing: 3px;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 1px;
}

h1 {
  font-size: clamp(5rem, 13vw, 12rem);
}

h1 span {
  color: #777;
}

.hero-copy {
  max-width: 490px;

  margin: 28px 0;

  color: #bbb;

  font-size: 0.95rem;
}

.hero-tag {
  position: absolute;

  right: 5vw;
  top: 10vw;

  z-index: 3;

  color: #666;

  text-align: right;

  font-family: "Anton", sans-serif;
  font-size: 1.1rem;

  line-height: 1;

  letter-spacing: 2px;

  animation: fadeIn 1.5s ease;
}

/* BUTTONS */

.btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 15px 23px;

  font-size: 0.72rem;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: 1.3px;

  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.btn-light {
  background: white;
  color: black;
}

.btn-light:hover {
  background: #d7d7d7;
  transform: translateY(-3px);
}

/* SECTIONS */

.section {
  padding: 115px 5vw;
}

.section-heading {
  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  margin-bottom: 45px;
}

.section-heading h2 {
  font-size: clamp(3.5rem, 7vw, 6.5rem);
}

.section-note {
  max-width: 300px;
  color: var(--muted);
  font-size: 0.78rem;
}

/* FILTERS */

.filters {
  display: flex;
  flex-wrap: wrap;

  gap: 8px;

  margin-bottom: 35px;
}

.filter {
  padding: 10px 17px;

  color: #aaa;
  background: transparent;

  border: 1px solid #333;

  cursor: pointer;

  font-size: 0.68rem;
  font-weight: 800;

  letter-spacing: 1px;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.filter:hover,
.filter.active {
  color: black;
  background: white;
  border-color: white;
}

/* PRODUCTS */

.product-grid {
  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 18px;
}

.product-card {
  position: relative;

  padding: 11px;

  background: var(--surface);

  border: 1px solid var(--line);

  overflow: hidden;

  transform: translateY(0);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.product-card:hover {
  transform: translateY(-7px);

  border-color: #555;

  background: var(--surface-2);
}

.product-image {
  position: relative;

  aspect-ratio: 4 / 5;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 50% 30%,
      #333,
      #171717 55%,
      #0d0d0d
    );
}

.product-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      135deg,
      transparent 45%,
      rgba(255,255,255,0.06) 50%,
      transparent 55%
    );

  transform: translateX(-120%);

  transition: transform 0.7s ease;
}

.product-card:hover .product-image::after {
  transform: translateX(120%);
}

.product-image span {
  position: relative;
  z-index: 2;

  color: #777;

  font-family: "Anton", sans-serif;

  font-size: clamp(2rem, 3.4vw, 3.5rem);

  line-height: 0.84;

  text-align: center;

  letter-spacing: 1px;

  transition:
    transform 0.4s ease,
    color 0.4s ease;
}

.product-card:hover .product-image span {
  color: #aaa;
  transform: scale(1.04);
}

.product-info {
  display: flex;

  align-items: flex-start;
  justify-content: space-between;

  gap: 12px;

  padding: 18px 3px 15px;
}

.product-info h3 {
  font-size: 0.88rem;
  font-weight: 700;
}

.product-info p {
  margin-top: 3px;

  color: #707070;

  font-size: 0.7rem;
}

.product-info strong {
  color: #ddd;

  font-size: 0.76rem;

  white-space: nowrap;
}

.product-btn {
  width: 100%;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 13px;

  background: white;
  color: black;

  font-size: 0.67rem;
  font-weight: 900;

  letter-spacing: 1px;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.product-btn:hover {
  background: #d4d4d4;
}

.store-link {
  margin-top: 45px;
  text-align: center;
}

.store-link a {
  display: inline-block;

  padding-bottom: 5px;

  border-bottom: 1px solid white;

  font-size: 0.7rem;
  font-weight: 800;

  letter-spacing: 1px;
}

/* ABOUT */

.manifesto {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 8vw;

  align-items: center;

  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.manifesto h2 {
  font-size: clamp(4rem, 8vw, 8rem);
}

.manifesto > p {
  max-width: 650px;

  color: #aaa;

  font-size: clamp(1rem, 2vw, 1.5rem);
}

/* CTA */

.cta {
  padding: 135px 5vw;

  color: #080808;

  text-align: center;

  background: #ededed;

  overflow: hidden;
}

.cta .eyebrow {
  color: #555;
}

.cta h2 {
  margin-bottom: 38px;

  font-size: clamp(4.5rem, 11vw, 10rem);
}

/* FOOTER */

footer {
  display: grid;

  grid-template-columns: 1fr auto;

  gap: 25px;

  padding: 50px 5vw 30px;

  border-top: 1px solid var(--line);
}

.footer-brand {
  font-family: "Anton", sans-serif;
  font-size: 2rem;
}

.footer-links {
  display: flex;

  gap: 25px;

  font-size: 0.7rem;
  font-weight: 700;

  text-transform: uppercase;
}

.footer-links a:hover {
  opacity: 0.6;
}

footer p {
  grid-column: 1 / -1;

  color: #555;

  font-size: 0.68rem;
}

/* SCROLL REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(35px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ANIMATIONS */

@keyframes heroEnter {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* TABLET */

@media (max-width: 1000px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav {
    gap: 20px;
  }
}

/* MOBILE */

@media (max-width: 760px) {
  .site-header {
    height: 70px;
    padding: 0 6vw;
  }

  .nav {
    display: none;
  }

  .nav.open {
    position: absolute;

    top: 70px;
    left: 0;
    right: 0;

    display: flex;

    flex-direction: column;
    align-items: flex-start;

    gap: 22px;

    padding: 28px 6vw;

    background: rgba(7,7,7,0.98);

    border-bottom: 1px solid var(--line);

    animation: menuEnter 0.25s ease;
  }

  .menu-btn {
    display: block;
  }

  .header-shop {
    display: none;
  }

  .hero {
    min-height: 80vh;
    padding: 20vw 6vw;
  }

  .hero-tag {
    display: none;
  }

  h1 {
    font-size: 23vw;
  }

  .section {
    padding: 80px 6vw;
  }

  .section-heading {
    display: block;
  }

  .section-note {
    margin-top: 15px;
  }

  .manifesto {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta {
    padding: 100px 6vw;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 40px 6vw;
  }

  footer p {
    grid-column: auto;
  }
}

/* SMALL PHONES */

@media (max-width: 520px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-image span {
    font-size: 3rem;
  }

  .hero {
    min-height: 75vh;
  }

  .hero-copy {
    font-size: 0.85rem;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@keyframes menuEnter {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}