/* Too Cozy — style.css */

:root {
  --bg: #080808;
  --bg-2: #101010;
  --white: #f0ece4;
  --red: #C41230;
  --red-dark: #8B0A1E;
  --chrome: #b8b8b8;
  --border: #1e1e1e;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  cursor: none;
  overflow-x: hidden;
}

/* ─── FILM GRAIN ─── */
#grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.05;
}

/* ─── CUSTOM CURSOR ─── */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, background 0.25s ease;
  mix-blend-mode: normal;
}
.cursor.expanded {
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid rgba(240,236,228,0.6);
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 52px;
  transition: background 0.4s, border-color 0.4s, padding 0.4s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(8,8,8,0.94);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
  padding: 18px 52px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 4px;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--red); }

.nav-links {
  display: flex;
  gap: 44px;
  list-style: none;
}
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  opacity: 1;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 0.75; }
.nav-links a.active { opacity: 1; color: #FF4D6A; }

/* ─── HERO ─── */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bg) center/cover no-repeat;
  background-image: url(images/hero.jpg);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(8,8,8,0.2) 0%,
    rgba(8,8,8,0.55) 50%,
    rgba(8,8,8,1) 100%);
}

/* Logo Badge */
.logo-badge {
  position: relative;
  z-index: 2;
  margin-bottom: 36px;
  animation: badgePulse 5s ease-in-out infinite;
}
.logo-badge svg {
  width: clamp(260px, 35vw, 380px);
  height: auto;
  filter: drop-shadow(0 0 40px rgba(196,18,48,0.35));
}
@keyframes badgePulse {
  0%, 100% { filter: drop-shadow(0 0 40px rgba(196,18,48,0.35)); }
  50% { filter: drop-shadow(0 0 70px rgba(196,18,48,0.65)); }
}

.hero-eyebrow {
  position: relative;
  z-index: 2;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 48px;
}

.btn {
  display: inline-block;
  padding: 16px 52px;
  border: 1px solid var(--white);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  z-index: 2;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.btn:hover { background: var(--white); color: var(--bg); }
.btn.red { background: var(--red); border-color: var(--red); }
.btn.red:hover { background: transparent; color: var(--red); }

.scroll-ind {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: indBounce 2s ease-in-out infinite;
}
.scroll-ind span { font-size: 9px; letter-spacing: 4px; text-transform: uppercase; opacity: 0.3; }
.scroll-ind .line { width: 1px; height: 44px; background: linear-gradient(to bottom, var(--white), transparent); }
@keyframes indBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ─── MARQUEE ─── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  background: var(--bg-2);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-track.rev { animation-direction: reverse; }
.marquee-track span {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 4px;
  white-space: nowrap;
  padding: 0 28px;
  color: var(--chrome);
}
.marquee-track span.dot { color: var(--red); padding: 0 4px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── SECTIONS ─── */
section { padding: 120px 52px; }

.label {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.big-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 88px);
  line-height: 0.92;
  margin-bottom: 56px;
}

/* ─── DROP GRID ─── */
.drop-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3px;
}
.drop-card { position: relative; }
.drop-card:first-child { grid-row: span 2; }

.drop-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drop-card:first-child .drop-img { aspect-ratio: 2/3; }

.drop-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.drop-card:hover .drop-img img { transform: scale(1.05); }

.img-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(240,236,228,0.15);
  text-align: center;
  padding: 16px;
}

.drop-info {
  padding: 14px 10px 4px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.drop-info h3 { font-family: var(--font-display); font-size: 20px; letter-spacing: 1px; }
.drop-info .price { font-size: 13px; color: var(--chrome); }

/* ─── BRAND STATEMENT ─── */
.brand-statement {
  background: var(--bg-2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.statement-text {
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.65;
  font-weight: 300;
  opacity: 0.82;
  margin-bottom: 20px;
}
.statement-img {
  aspect-ratio: 3/4;
  background: var(--border);
  position: relative;
  overflow: hidden;
}
.statement-img img { width: 100%; height: 100%; object-fit: cover; }

/* ─── LOOKBOOK ─── */
.lookbook-section { padding: 120px 0; overflow: hidden; }
.lookbook-header {
  padding: 0 52px;
  margin-bottom: 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.drag-hint { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; opacity: 0.3; }

.lookbook-track {
  display: flex;
  gap: 3px;
  cursor: grab;
  user-select: none;
  padding: 0 52px;
  overflow-x: auto;
  scrollbar-width: none;
}
.lookbook-track::-webkit-scrollbar { display: none; }
.lookbook-track:active { cursor: grabbing; }

.lb-item {
  flex: 0 0 320px;
  aspect-ratio: 2/3;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.lb-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  transition: transform 0.5s ease;
}
.lb-item:hover img { transform: scale(1.04); }

/* ─── SHOP PAGE ─── */
.shop-hero {
  height: 72vh;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  padding: 64px 52px;
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
}
.shop-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-2) center/cover no-repeat;
  background-image: url(images/shop-hero.jpg);
}
.shop-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.95), rgba(8,8,8,0.2));
}
.shop-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 160px);
  line-height: 0.88;
  position: relative;
  z-index: 1;
}

.filter-bar {
  display: flex;
  gap: 0;
  padding: 0 52px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2px;
}
.filter-btn {
  padding: 14px 28px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--white);
  opacity: 0.4;
  cursor: none;
  transition: opacity 0.2s, border-color 0.2s;
  font-family: var(--font-body);
  margin-bottom: -1px;
}
.filter-btn:hover { opacity: 0.75; }
.filter-btn.active { opacity: 1; border-bottom-color: var(--red); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  padding: 3px 52px 100px;
}

.product-card { position: relative; overflow: hidden; }

.prod-img {
  aspect-ratio: 3/4;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prod-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .prod-img img { transform: scale(1.06); }

.prod-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.product-card:hover .prod-overlay { opacity: 1; }
.prod-overlay a {
  padding: 12px 28px;
  background: var(--white);
  color: var(--bg);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}

.prod-info { padding: 14px 0 8px; }
.prod-name { font-size: 14px; margin-bottom: 3px; }
.prod-sub { font-size: 11px; opacity: 0.38; margin-bottom: 8px; }
.prod-price { font-family: var(--font-display); font-size: 20px; }

/* ─── ABOUT PAGE ─── */
.about-hero {
  height: 72vh;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  padding: 64px 52px;
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-2) center top/cover no-repeat;
  background-image: url(images/about-hero.jpg);
}
.about-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,1) 0%, rgba(8,8,8,0.25) 100%);
}
.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 140px);
  line-height: 0.88;
  position: relative;
  z-index: 1;
}

.about-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
.about-body p {
  font-size: 16px;
  line-height: 1.85;
  opacity: 0.72;
  margin-bottom: 22px;
  font-weight: 300;
}
.about-side-img {
  aspect-ratio: 3/4;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
  top: 0;
}
.about-side-img img { width: 100%; height: 100%; object-fit: cover; }

.values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.value-card {
  background: var(--bg);
  padding: 64px 52px;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--red);
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.value-card p { font-size: 14px; opacity: 0.55; line-height: 1.75; }

/* ─── CONTACT ─── */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.contact-info {
  padding: 100px 52px;
  border-right: 1px solid var(--border);
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 68px);
  line-height: 0.95;
  margin-bottom: 48px;
}
.c-link {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  text-decoration: none;
  color: var(--white);
  font-size: 14px;
  opacity: 0.65;
  transition: opacity 0.2s;
}
.c-link:hover { opacity: 1; }
.c-link .icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-form { padding: 100px 52px; }
.contact-form h2 {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 68px);
  line-height: 0.95;
  margin-bottom: 48px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.25s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: none; height: 120px; }
.form-group select option { background: var(--bg-2); }
.submit-btn {
  width: 100%;
  padding: 18px;
  background: var(--red);
  color: var(--white);
  border: none;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 4px;
  cursor: none;
  margin-top: 8px;
  transition: background 0.3s;
}
.submit-btn:hover { background: var(--red-dark); }

/* ─── FOOTER ─── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 56px 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.foot-logo { font-family: var(--font-display); font-size: 26px; letter-spacing: 4px; }
.foot-logo span { color: var(--red); }
.foot-links { display: flex; gap: 36px; }
.foot-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.35;
  transition: opacity 0.2s;
}
.foot-links a:hover { opacity: 1; }
.foot-copy { font-size: 11px; opacity: 0.22; }

/* ─── MAGNETIC ─── */
.magnetic { display: inline-block; transition: transform 0.35s cubic-bezier(0.23,1,0.32,1); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  nav.scrolled { padding: 14px 24px; }
  section { padding: 80px 24px; }

  .drop-grid { grid-template-columns: 1fr 1fr; }
  .drop-card:first-child { grid-column: span 2; grid-row: span 1; }
  .drop-card:first-child .drop-img { aspect-ratio: 16/10; }

  .brand-statement { grid-template-columns: 1fr; gap: 48px; }
  .statement-img { display: none; }

  .lookbook-header { padding: 0 24px; }
  .lookbook-track { padding: 0 24px; }
  .lb-item { flex: 0 0 260px; }

  .product-grid { grid-template-columns: repeat(2, 1fr); padding: 3px 24px 80px; }
  .filter-bar { padding: 0 24px; }
  .shop-hero { padding: 64px 24px; }

  .about-body { grid-template-columns: 1fr; gap: 48px; }
  .about-side-img { order: -1; aspect-ratio: 4/3; }
  .values-row { grid-template-columns: 1fr; }
  .value-card { padding: 48px 24px; }

  .contact-section { grid-template-columns: 1fr; }
  .contact-info { border-right: none; border-bottom: 1px solid var(--border); padding: 80px 24px; }
  .contact-form { padding: 80px 24px; }
  .form-row { grid-template-columns: 1fr; }

  footer { flex-direction: column; gap: 32px; text-align: center; padding: 48px 24px; }
  .foot-links { flex-wrap: wrap; justify-content: center; gap: 24px; }
}
