:root {
  /* PALETTE: Brutal High Contrast */
  --color-bg: #F0F0F0;
  /* Off-White (Medical/Raw) */
  --color-text: #050505;
  /* Ink Black */
  --color-accent: #FF3300;
  /* International Orange (Alerts) */
  --color-border: #050505;
  /* 1px Solid Borders EVERYWHERE */

  /* TYPOGRAPHY: System vs Display */
  --font-display: 'Impact', 'Haas Grot', sans-serif;
  /* Massive Headlines */
  --font-mono: 'Courier New', monospace;
  /* Data/Specs */

  /* SPACING & LAYOUT */
  --grid-gap: 1px;
  /* For explicit grid lines */
  --border-width: 1px;
  /* Hard edges */
}

/* BRUTALIST RESET */
* {
  margin: 0;
  padding: 0;
  border-radius: 0px !important;
  /* NO ROUNDED CORNERS */
  box-sizing: border-box;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-mono);
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: normal;
}

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

/* EXPOSE THE GRID */
.grid-container {
  display: grid;
  gap: var(--grid-gap);
  background-color: var(--color-border);
  /* Creates lines between cells */
  border: var(--border-width) solid var(--color-border);
  width: 100%;
}

.grid-item {
  background-color: var(--color-bg);
  /* Content sits on top */
  padding: 1rem;
}

/* UTILITIES */
.full-height {
  height: 100vh;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.uppercase {
  text-transform: uppercase;
}

/* NAVIGATION */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

nav .brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: -1px;
}

nav .nav-links {
  display: flex;
  gap: 2rem;
}

nav .cart-trigger {
  cursor: pointer;
}

/* CART DRAWER */
#cart-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: var(--color-bg);
  border-left: 1px solid var(--color-border);
  z-index: 999;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

#cart-drawer.open {
  right: 0;
}

.cart-header {
  padding: 1rem;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-items {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  filter: grayscale(100%);
}

.cart-footer {
  padding: 1rem;
  border-top: 1px solid var(--color-border);
}

.checkout-btn {
  width: 100%;
  padding: 1rem;
  background: var(--color-text);
  color: var(--color-bg);
  font-family: var(--font-mono);
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}

.checkout-btn:hover {
  background: var(--color-accent);
}

/* BACKDROP */
#cart-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#cart-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* CUSTOM CURSOR */
body {
  cursor: crosshair;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--color-text);
  color: var(--color-bg);
  border: 1px solid var(--color-border);
  font-family: var(--font-mono);
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--color-accent);
  color: var(--color-text);
}

.btn-securing {
  background-color: var(--color-accent) !important;
  color: var(--color-text) !important;
}

/* MARQUEE */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  background: var(--color-text);
  color: var(--color-bg);
  padding: 0.5rem 0;
  border-top: 1px solid var(--color-border);
}

.marquee-content {
  display: inline-block;
  animation: marquee 20s linear infinite;
  font-family: var(--font-mono);
  font-size: 0.9rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* PAGE SPECIFIC */
/* HOME */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100vh;
  padding-top: 60px;
  /* Nav height */
  position: relative;
}

.hero-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15vw;
  line-height: 0.8;
  letter-spacing: -5px;
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.hero-video {
  position: relative;
  overflow: hidden;
  border-left: 1px solid var(--color-border);
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.2);
  /* Added contrast for more grit */
  transition: filter 0.3s;
}

.hero-video:hover video {
  filter: invert(1);
}

/* GLITCH EFFECT */
.glitch {
  position: relative;
  color: var(--color-text);
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg);
}

.glitch::before {
  left: 2px;
  text-shadow: -2px 0 var(--color-accent);
  clip-path: inset(20% 0 80% 0);
  animation: glitch-anim 4s infinite linear alternate-reverse;
}

.glitch::after {
  left: -2px;
  text-shadow: -2px 0 blue;
  clip-path: inset(60% 0 10% 0);
  animation: glitch-anim2 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
  0% {
    clip-path: inset(40% 0 80% 0);
    transform: translate(-2px, 2px);
  }

  20% {
    clip-path: inset(80% 0 10% 0);
    transform: translate(2px, -2px);
  }

  40% {
    clip-path: inset(10% 0 50% 0);
    transform: translate(-2px, 2px);
  }

  60% {
    clip-path: inset(50% 0 20% 0);
    transform: translate(2px, -2px);
  }

  80% {
    clip-path: inset(20% 0 60% 0);
    transform: translate(-1px, 1px);
  }

  100% {
    clip-path: inset(70% 0 30% 0);
    transform: translate(1px, -1px);
  }
}

@keyframes glitch-anim2 {
  0% {
    clip-path: inset(10% 0 60% 0);
    transform: translate(2px, -2px);
  }

  20% {
    clip-path: inset(30% 0 20% 0);
    transform: translate(-2px, 2px);
  }

  40% {
    clip-path: inset(70% 0 40% 0);
    transform: translate(2px, -2px);
  }

  60% {
    clip-path: inset(20% 0 80% 0);
    transform: translate(-2px, 2px);
  }

  80% {
    clip-path: inset(50% 0 10% 0);
    transform: translate(1px, -1px);
  }

  100% {
    clip-path: inset(90% 0 50% 0);
    transform: translate(-1px, 1px);
  }
}

/* SCANLINES */
.scanlines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0) 50%,
      rgba(0, 0, 0, 0.1) 50%,
      rgba(0, 0, 0, 0.1));
  background-size: 100% 4px;
  pointer-events: none;
  z-index: 990;
}

/* DATA DECOR */
.data-decor {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--color-text);
  z-index: 50;
  pointer-events: none;
  user-select: none;
}

/* SHOP */
/* SHOP LAYOUT */
.shop-container {
  display: flex;
  margin-top: 60px;
  /* Nav height */
  min-height: 100vh;
}

.shop-sidebar {
  width: 250px;
  border-right: 1px solid var(--color-border);
  padding: 2rem;
  position: sticky;
  top: 60px;
  height: calc(100vh - 60px);
  overflow-y: auto;
  flex-shrink: 0;
}

.filter-group {
  margin-bottom: 2rem;
}

.filter-group h3 {
  font-family: var(--font-mono);
  font-size: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.5rem;
}

.filter-option {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  cursor: pointer;
}

.filter-option input {
  margin-right: 0.5rem;
  appearance: none;
  width: 15px;
  height: 15px;
  border: 1px solid var(--color-text);
  border-radius: 0;
  display: grid;
  place-content: center;
}

.filter-option input::before {
  content: "";
  width: 9px;
  height: 9px;
  transform: scale(0);
  background-color: var(--color-accent);
}

.filter-option input:checked::before {
  transform: scale(1);
}

.product-grid {
  flex-grow: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-auto-flow: dense;
  /* Fills gaps */
  gap: 1px;
  background: var(--color-border);
  border-top: 1px solid var(--color-border);
}

.product-card.span-2 {
  grid-column: span 2;
}

.product-card.span-2 .product-img {
  height: 80%;
  /* Larger image area for featured items */
}

.product-card {
  background: var(--color-bg);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 500px;
  position: relative;
}

.product-img {
  width: 100%;
  height: 70%;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.product-card:hover .product-img {
  filter: grayscale(0%);
}

.product-info {
  margin-top: 1rem;
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
}

.product-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.product-price {
  font-family: var(--font-mono);
  font-size: 1rem;
}

.add-btn {
  width: 100%;
  margin-top: 1rem;
  padding: 0.8rem;
  background: transparent;
  border: 1px solid var(--color-border);
  font-family: var(--font-mono);
  cursor: pointer;
  text-transform: uppercase;
}

.add-btn:hover {
  background: var(--color-text);
  color: var(--color-bg);
}

/* ARCHIVES WRAPPER */
.archives-wrapper {
  background: var(--color-bg);
}

.archive-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--color-border);
}

.archive-header {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  pointer-events: none;
  mix-blend-mode: difference;
  color: #fff;
  /* Ensure visibility against images */
}

.archive-header h1 {
  font-size: 15vw;
  line-height: 0.8;
}

/* CAROUSEL STRIPS */
.carousel-strip {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.carousel-strip img {
  height: 60vh;
  width: auto;
  min-width: 300px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.carousel-strip img:hover {
  filter: grayscale(0%);
}

/* Specific Positions */
/* Strip LR starts left, moves right */
.strip-lr {
  transform: translateX(-50%);
  /* Start shifted left */
}

/* Strip RL starts right, moves left */
.strip-rl {
  transform: translateX(0);
  /* Start neutral */
}


/* CASCADE GRID (Section 3) */
.cascade-grid {
  display: flex;
  justify-content: space-around;
  width: 100%;
  height: 100%;
}

.cascade-col {
  display: flex;
  flex-direction: column;
  gap: 50px;
  will-change: transform;
}

.cascade-col img {
  width: 30vw;
  height: 40vh;
  object-fit: cover;
  filter: grayscale(100%);
}

.col-1 {
  margin-top: -50vh;
}

.col-2 {
  margin-top: -10vh;
}

/* CONTACT */
.contact-wrapper {
  padding-top: 100px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-email {
  font-family: var(--font-display);
  font-size: 10vw;
  text-align: center;
  border-bottom: 2px solid var(--color-border);
  width: 90%;
  margin-bottom: 4rem;
}

.contact-form {
  width: 90%;
  max-width: 600px;
}

.form-group {
  margin-bottom: 2rem;
}

.form-input {
  width: 100%;
  padding: 1rem 0;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--color-border);
  font-family: var(--font-mono);
  font-size: 1.2rem;
  outline: none;
}

.form-input::placeholder {
  color: #999;
}

/* SCROLL ZOOM EFFECT */
.zoom-wrapper {
  height: 300vh;
  /* Scroll distance for zoom */
  position: relative;
  z-index: 10;
}

.zoom-container {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-bg);
}

.zoom-text {
  font-family: var(--font-display);
  font-size: 20vw;
  line-height: 0.8;
  letter-spacing: -5px;
  text-align: center;
  white-space: nowrap;
  transform-origin: center center;
  will-change: transform, opacity;
}

/* ABOUT SECTION */
.about-section {
  position: relative;
  z-index: 5;
  /* Behind the zoom initially? No, reveals after */
  padding: 100px 20px;
  background: var(--color-text);
  color: var(--color-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.about-content {
  max-width: 800px;
}

.about-title {
  font-size: 5vw;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.text-mask {
  font-family: var(--font-display);
  font-size: 15vw;
  line-height: 0.8;
  background-image: url('https://media.giphy.com/media/v1.Y2lkPTc5MGI3NjExbm91ZHg4ZnJveXJ5eGZ4eHl5eHl5eHl5eHl5eHl5eHl5eCZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/3o7TKSjRrfIPjeiVyM/giphy.gif');
  /* Static noise gif for mask */
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 2rem;
}

.about-desc {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  line-height: 1.6;
}

/* ANIMATED FOOTER */
.site-footer {
  background: var(--color-bg);
  color: var(--color-text);
  padding: 4rem 2rem;
  border-top: 1px solid var(--color-border);
  position: relative;
  z-index: 20;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 15vw;
  line-height: 0.75;
  letter-spacing: -5px;
}

.newsletter-form {
  flex-grow: 1;
  max-width: 600px;
}

.newsletter-form h3 {
  font-family: var(--font-mono);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.newsletter-input-group {
  display: flex;
  border: 1px solid var(--color-border);
}

.newsletter-input-group input {
  flex-grow: 1;
  border: none;
  background: transparent;
  padding: 1rem;
  font-family: var(--font-mono);
  outline: none;
}

.newsletter-input-group button {
  border: none;
  border-left: 1px solid var(--color-border);
  background: var(--color-text);
  color: var(--color-bg);
  padding: 0 2rem;
  cursor: pointer;
  font-family: var(--font-mono);
  text-transform: uppercase;
}

.newsletter-input-group button:hover {
  background: var(--color-accent);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  font-family: var(--font-mono);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
}

.footer-col a:hover {
  text-decoration: line-through;
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.payment-methods {
  opacity: 0.5;
  word-spacing: 5px;
}

/* ENHANCED CART STYLES */
.cart-empty {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 300px;
  text-align: center;
  font-family: var(--font-mono);
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-details h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.cart-item-price {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--color-border);
  background: transparent;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.qty-btn:hover {
  background: var(--color-text);
  color: var(--color-bg);
}

.qty-value {
  font-family: var(--font-mono);
  min-width: 30px;
  text-align: center;
}

.cart-item-subtotal {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.remove-btn {
  background: none;
  border: none;
  text-decoration: underline;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  opacity: 0.6;
  transition: all 0.2s;
}

.remove-btn:hover {
  opacity: 1;
  color: var(--color-accent);
}

/* PROMO CODE SECTION */
.promo-section {
  display: flex;
  gap: 0;
  margin-bottom: 1rem;
  border: 1px solid var(--color-border);
}

.promo-input {
  flex-grow: 1;
  border: none;
  background: transparent;
  padding: 0.75rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  outline: none;
}

.promo-apply-btn {
  border: none;
  border-left: 1px solid var(--color-border);
  background: var(--color-text);
  color: var(--color-bg);
  padding: 0.75rem 1rem;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

.promo-apply-btn:hover {
  background: var(--color-accent);
}

.promo-error {
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.promo-success {
  color: #00aa00;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

/* CART TOTALS */
.cart-totals {
  margin-bottom: 1rem;
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
}

.cart-subtotal,
.cart-discount,
.cart-total {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  margin-bottom: 0.5rem;
}

.cart-discount {
  color: #00aa00;
}

.cart-total {
  font-size: 1.2rem;
  font-weight: bold;
  border-top: 1px solid var(--color-border);
  padding-top: 0.5rem;
  margin-top: 0.5rem;
}

.checkout-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.continue-btn {
  width: 100%;
  padding: 0.75rem;
  background: transparent;
  border: 1px solid var(--color-border);
  font-family: var(--font-mono);
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 0.5rem;
}

.continue-btn:hover {
  background: var(--color-text);
  color: var(--color-bg);
}

/* ================================
   ABOUT PAGE STYLES
   ================================ */

.about-hero {
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 120px 2rem 4rem;
  position: relative;
  border-bottom: 1px solid var(--color-border);
}

.about-hero-content {
  text-align: center;
}

.about-hero-title {
  font-family: var(--font-display);
  font-size: 20vw;
  line-height: 0.8;
  letter-spacing: -5px;
}

.about-hero-subtitle {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  margin-top: 2rem;
  opacity: 0.6;
}

.about-block {
  padding: 4rem 2rem;
  border-bottom: 1px solid var(--color-border);
}

.about-block.inverted {
  background: var(--color-text);
  color: var(--color-bg);
}

.about-block-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2rem;
}

.block-number {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  opacity: 0.5;
}

.about-block-header h2 {
  font-family: var(--font-display);
  font-size: 3rem;
}

.about-block-content {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}

.text-column {
  flex: 2;
  min-width: 300px;
}

.lead-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.text-column p {
  font-family: var(--font-mono);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.stat-column {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat-item {
  border-left: 2px solid var(--color-border);
  padding-left: 1rem;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  opacity: 0.6;
}

.mission-text {
  max-width: 800px;
}

.large-quote {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
}

.value-card {
  background: var(--color-bg);
  padding: 2rem;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.value-card p {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  line-height: 1.5;
}

.team-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}

.team-member {
  text-align: center;
}

.member-avatar {
  width: 150px;
  height: 150px;
  border: 1px solid var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.team-member h4 {
  font-family: var(--font-display);
  font-size: 1rem;
}

.team-member p {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  opacity: 0.6;
}

.team-note {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  opacity: 0.6;
}

/* ================================
   CULTURE PAGE STYLES
   ================================ */

.culture-hero {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 2rem 4rem;
  position: relative;
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}

.culture-title {
  font-family: var(--font-display);
  font-size: 18vw;
  line-height: 0.8;
  letter-spacing: -5px;
}

.culture-subtitle {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  margin-top: 2rem;
  opacity: 0.6;
}

.culture-section {
  padding: 4rem 2rem;
  border-bottom: 1px solid var(--color-border);
}

.culture-section.inverted {
  background: var(--color-text);
  color: var(--color-bg);
}

.section-header {
  margin-bottom: 3rem;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  opacity: 0.5;
  display: block;
  margin-bottom: 0.5rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 4rem;
}

.section-date {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  opacity: 0.6;
  margin-top: 0.5rem;
}

.trends-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
}

.trend-card {
  background: var(--color-bg);
  padding: 2rem;
}

.trend-card.featured {
  grid-column: span 2;
}

@media (max-width: 700px) {
  .trend-card.featured {
    grid-column: span 1;
  }
}

.trend-number {
  font-family: var(--font-display);
  font-size: 3rem;
  opacity: 0.2;
  margin-bottom: 1rem;
}

.trend-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.trend-card p {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.trend-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.trend-examples span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--color-border);
}

/* DROPS TIMELINE */
.drops-timeline {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--color-bg);
}

.inverted .drops-timeline {
  background: var(--color-text);
}

.drop-item {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  flex-wrap: wrap;
  align-items: center;
}

.drop-date {
  min-width: 80px;
  text-align: center;
}

.drop-date .month {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  opacity: 0.6;
}

.drop-date .day {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
}

.drop-info {
  flex-grow: 1;
  min-width: 200px;
}

.drop-info h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.drop-info p {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.drop-price {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  opacity: 0.6;
}

.drop-status {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.drop-status.hot {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* ARTICLES GRID */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.article-card {
  border: 1px solid var(--color-border);
  padding: 2rem;
}

.article-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
  background: var(--color-text);
  color: var(--color-bg);
  display: inline-block;
  margin-bottom: 1rem;
}

.article-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.article-card p {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.read-time {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  opacity: 0.5;
}

/* ================================
   MODELS PAGE STYLES
   ================================ */

.models-hero {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 2rem 4rem;
  position: relative;
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}

.models-title {
  font-family: var(--font-display);
  font-size: 18vw;
  line-height: 0.8;
  letter-spacing: -5px;
}

.models-subtitle {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  margin-top: 2rem;
  opacity: 0.6;
}

.style-intro {
  padding: 4rem 2rem;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.intro-text {
  max-width: 800px;
  margin: 0 auto;
  font-family: var(--font-mono);
  font-size: 1.1rem;
  line-height: 1.6;
}

.lookbook-gallery {
  border-bottom: 1px solid var(--color-border);
}

.lookbook-item {
  display: flex;
  min-height: 80vh;
  border-bottom: 1px solid var(--color-border);
}

.lookbook-item.reversed {
  flex-direction: row-reverse;
}

.lookbook-image {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.lookbook-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.5s;
}

.lookbook-item:hover .lookbook-image img {
  filter: grayscale(0%);
}

.image-overlay {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
}

.style-tag {
  font-family: var(--font-display);
  font-size: 3rem;
  color: white;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  mix-blend-mode: difference;
}

.lookbook-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
}

.lookbook-info h3 {
  font-family: var(--font-display);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.lookbook-info p {
  font-family: var(--font-mono);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 400px;
}

.featured-kicks {
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

.featured-kicks span:first-child {
  opacity: 0.5;
  margin-right: 0.5rem;
}

.kick-name {
  border-bottom: 1px solid var(--color-border);
}

.style-cta {
  padding: 6rem 2rem;
  text-align: center;
}

.style-cta h2 {
  font-family: var(--font-display);
  font-size: 4rem;
  margin-bottom: 1rem;
}

.style-cta p {
  font-family: var(--font-mono);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .lookbook-item,
  .lookbook-item.reversed {
    flex-direction: column;
  }

  .lookbook-image {
    min-height: 50vh;
  }

  .lookbook-info {
    padding: 2rem;
  }

  .about-hero-title,
  .culture-title,
  .models-title {
    font-size: 25vw;
  }

  .about-block-header h2,
  .section-header h2 {
    font-size: 2rem;
  }
}