/* ===== HOMEPAGE.CSS v2 — brighter, more readable ===== */

/* HERO */
.lim-hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 48px;
  position: relative;
  overflow: hidden;
  /* subtle gradient lift at top for header legibility */
  background: linear-gradient(160deg, var(--gray-1) 0%, var(--black) 60%);
}
.lim-hero-number {
  position: absolute;
  right: 48px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(200px, 30vw, 400px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px var(--gray-3); /* was gray-2, now more visible */
  line-height: 1;
  pointer-events: none;
  user-select: none;
  opacity: 0;
  animation: fadeIn 1.2s ease 0.5s forwards;
}
.lim-hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);     /* gold — stands out on dark bg */
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.3s forwards;
}
.lim-hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 180px);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--white);
}
.lim-line { display: block; overflow: hidden; }
.lim-line span { display: block; transform: translateY(100%); animation: slideUp 0.9s cubic-bezier(0.16,1,0.3,1) forwards; }
.lim-line:nth-child(1) span { animation-delay: 0.1s; }
.lim-line:nth-child(2) span { animation-delay: 0.25s; }
.lim-line:nth-child(3) span { animation-delay: 0.4s; }
.lim-hero-title em { font-style: italic; color: var(--cream); }

.lim-hero-sub {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 48px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}
.lim-hero-sub p {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--gray-6);   /* was gray-6 → now warmer/brighter */
  max-width: 280px;
  line-height: 1.7;
}
.lim-hero-scroll {
  position: absolute;
  bottom: 40px; right: 48px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-5);   /* brighter than before */
  writing-mode: vertical-rl;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.2s forwards;
}

/* MARQUEE */
.lim-marquee {
  border-top: 1px solid var(--gray-2);
  border-bottom: 1px solid var(--gray-2);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
  background: var(--gray-1);  /* subtle bg lift */
}
.lim-marquee-track {
  display: inline-flex;
  animation: marquee 18s linear infinite;
}
.lim-marquee-track span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gray-5);       /* was gray-3 — much more readable */
  padding: 0 32px;
}
.lim-marquee-track span.dot { color: var(--accent); padding: 0; }

/* PRODUCTS SECTION */
.lim-products-section { padding: 120px 48px; }

.lim-products-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  grid-template-rows: auto auto;
  gap: 3px;
}
.lim-product-card {
  position: relative;
  overflow: hidden;
  background: var(--gray-2);  /* was gray-1 — slightly lighter */
  aspect-ratio: 3/4;
}
.lim-product-card:nth-child(1) { grid-row: span 2; aspect-ratio: unset; min-height: 700px; }
.lim-product-card:nth-child(4) { grid-column: 2 / span 2; aspect-ratio: 16/7; }

.lim-product-img-wrap { width: 100%; height: 100%; overflow: hidden; }
.lim-product-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(80%);     /* was 100% — hint of color */
  transition: transform 0.7s var(--transition), filter 0.4s ease;
}
.lim-product-card:hover .lim-product-img { transform: scale(1.05); filter: grayscale(0%); }

.lim-product-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 12px;
}
.lim-badge-low { background: var(--accent); color: var(--black); border: none; top: 52px; }

.lim-product-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(10,10,10,0.96));
  transform: translateY(8px);
  transition: transform 0.4s ease;
}
.lim-product-card:hover .lim-product-info { transform: translateY(0); }
.lim-product-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  color: var(--white);
}
.lim-product-price { font-family: var(--font-mono); font-size: 13px; color: var(--gray-6); letter-spacing: 0.1em; }
.lim-product-price .woocommerce-Price-amount { color: var(--gray-6); }

.lim-quick-add {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--white);
  color: var(--black);
  border: none;
  padding: 12px 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.lim-product-card:hover .lim-quick-add { opacity: 1; transform: translateY(0); }

/* EDITORIAL BANNER */
.lim-editorial-banner {
  height: 70vh;
  background: var(--cream);   /* warm off-white — eye-catching */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin: 3px 0;
}
.lim-editorial-text {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 140px);
  font-weight: 900;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  text-align: center;
  line-height: 0.9;
}
.lim-editorial-text em { font-style: italic; color: transparent; -webkit-text-stroke: 2px var(--black); }
.lim-editorial-sub {
  position: absolute;
  bottom: 48px; right: 48px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-4);
}

/* STATS */
.lim-stats-section {
  padding: 80px 48px;
  border-top: 1px solid var(--gray-2);
  border-bottom: 1px solid var(--gray-2);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--gray-1);
}
.lim-stat-item {
  padding: 40px;
  border-right: 1px solid var(--gray-2);
  text-align: center;
}
.lim-stat-item:last-child { border-right: none; }
.lim-stat-number {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 8px;
  color: var(--white);
}
.lim-stat-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gray-5); }

/* ABOUT */
.lim-about-section {
  padding: 140px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-top: 1px solid var(--gray-2);
}
.lim-about-number {
  font-family: var(--font-display);
  font-size: clamp(120px, 18vw, 240px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px var(--gray-3);  /* was gray-2 — more visible */
  line-height: 1;
}
.lim-about-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--accent); margin-bottom: 24px; }
.lim-about-heading { font-family: var(--font-display); font-size: clamp(28px, 4vw, 52px); font-weight: 700; text-transform: uppercase; line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 24px; color: var(--white); }
.lim-about-text { font-family: var(--font-mono); font-size: 13px; line-height: 1.8; color: var(--gray-6); margin-bottom: 40px; }

/* NEWSLETTER */
.lim-newsletter-section {
  padding: 120px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--gray-1);
}
.lim-newsletter-section::before {
  content: 'JOIN';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(100px, 20vw, 280px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px var(--gray-2);
  pointer-events: none;
  white-space: nowrap;
}
.lim-newsletter-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; position: relative; }
.lim-newsletter-title { font-family: var(--font-display); font-size: clamp(28px, 4vw, 56px); font-weight: 900; text-transform: uppercase; letter-spacing: -0.02em; margin-bottom: 48px; position: relative; color: var(--white); }
.lim-newsletter-form { display: flex; max-width: 480px; margin: 0 auto; position: relative; }
.lim-newsletter-input {
  flex: 1;
  background: transparent;
  border: 1px solid var(--gray-4);
  border-right: none;
  padding: 16px 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--white);
  outline: none;
  transition: border-color 0.3s ease;
}
.lim-newsletter-input::placeholder { color: var(--gray-4); }
.lim-newsletter-input:focus { border-color: var(--gray-6); }
.lim-newsletter-btn {
  background: var(--white);
  border: 1px solid var(--white);
  padding: 16px 32px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--black);
  transition: background 0.3s ease, color 0.3s ease;
}
.lim-newsletter-btn:hover { background: transparent; color: var(--white); }

/* FOOTER */
#lim-footer {
  padding: 80px 48px 40px;
  border-top: 1px solid var(--gray-2);
  background: var(--gray-1);
}
.lim-footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 80px; }
.lim-footer-logo { font-family: var(--font-display); font-size: clamp(28px, 4vw, 52px); font-weight: 900; text-transform: uppercase; letter-spacing: -0.02em; line-height: 1; margin-bottom: 24px; color: var(--white); }
.lim-footer-tagline { font-family: var(--font-mono); font-size: 12px; color: var(--gray-5); letter-spacing: 0.1em; line-height: 1.7; }
.lim-footer-nav-title { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gray-4); margin-bottom: 24px; }
.lim-footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.lim-footer-nav-list a { font-family: var(--font-mono); font-size: 13px; color: var(--gray-5); text-decoration: none; letter-spacing: 0.05em; transition: color 0.3s ease; }
.lim-footer-nav-list a:hover { color: var(--white); }
.lim-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-2);
}
.lim-footer-copy, .lim-footer-made { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; color: var(--gray-4); text-transform: uppercase; }
.lim-footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.lim-footer-legal a { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.15em; color: var(--gray-4); text-transform: uppercase; text-decoration: none; transition: color 0.3s; }
.lim-footer-legal a:hover { color: var(--white); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .lim-products-grid { grid-template-columns: 1fr 1fr; }
  .lim-product-card:nth-child(1) { grid-row: span 1; min-height: 400px; }
  .lim-product-card:nth-child(4) { grid-column: span 2; aspect-ratio: 16/9; }
  .lim-footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .lim-hero { padding: 0 24px; }
  .lim-hero-number { display: none; }
  .lim-hero-sub { flex-direction: column; align-items: flex-start; gap: 24px; }
  .lim-products-section { padding: 80px 24px; }
  .lim-products-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .lim-product-card:nth-child(1) { min-height: 300px; }
  .lim-about-section { grid-template-columns: 1fr; padding: 80px 24px; }
  .lim-about-number { font-size: 80px; }
  .lim-stats-section { grid-template-columns: 1fr; padding: 40px 24px; }
  .lim-stat-item { border-right: none; border-bottom: 1px solid var(--gray-2); }
  .lim-newsletter-section { padding: 80px 24px; }
  .lim-footer-top { grid-template-columns: 1fr; gap: 40px; }
  #lim-footer { padding: 60px 24px 32px; }
  .lim-footer-bottom { flex-direction: column; align-items: flex-start; }
}
