/* ============================================
   HOME — layout override & page-specific styles
   ============================================ */

/* ── NAV override for home: logo left, links centered, icons right ── */
.nav {
  justify-content: flex-start;
}
.nav__logo {
  position: static;
  transform: none;
  flex-shrink: 0;
}
.nav__links {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 40px;
}
.nav__actions {
  margin-left: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  padding: 0;
}
.nav__icon svg {
  width: 18px;
  height: 18px;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: calc(100vh - var(--nav-h));
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--cream);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 0 var(--gutter) 72px;
  color: var(--dark);
}
.hero__eyebrow {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 16px;
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(72px, 9vw, 128px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.92;
  color: var(--dark);
  margin-bottom: 40px;
}
.hero__cta {
  min-width: 192px;
}

/* ── TICKER ── */
.ticker {
  background: var(--red);
  overflow: hidden;
  white-space: nowrap;
  height: 42px;
  display: flex;
  align-items: center;
}
.ticker__track {
  display: inline-flex;
  animation: ticker-scroll 28s linear infinite;
}
.ticker__track span {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  padding-right: 0;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── COUNTDOWN + PRODUCTS ── */
.cd-section {
  padding: 72px var(--gutter) 80px;
  border-bottom: 1px solid var(--gray-sep);
}
.cd-eyebrow {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 14px;
}
.cd-heading {
  font-family: var(--font-head);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--dark);
  margin-bottom: 32px;
}
.countdown {
  display: flex;
  align-items: flex-start;
  margin-bottom: 72px;
}
.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 88px;
}
.cd-value {
  font-family: var(--font-head);
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--red);
}
.cd-unit-label {
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-top: 8px;
}
.cd-sep {
  font-family: var(--font-head);
  font-size: 60px;
  font-weight: 300;
  color: var(--red);
  line-height: 1;
  padding: 0 4px;
  align-self: flex-start;
}
.nueva-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 28px;
}

/* Product grid — 3 columns */
.hg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 40px;
}
.hg-card {
  display: flex;
  flex-direction: column;
}
.hg-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  flex: 1;
}
.hg-card__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--ph);
  overflow: hidden;
  margin-bottom: 14px;
}
.hg-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hg-card__sku {
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 4px;
}
.hg-card__name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--dark);
}
.hg-card__price {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 16px;
}
.hg-card__add {
  font-size: 11px;
  letter-spacing: 0.14em;
  cursor: pointer;
}

.ver-todos {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s;
}
.ver-todos:hover { opacity: 0.55; }

/* ── LOOKBOOK SPLIT ── */
.lb-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.lb-split__img {
  background: var(--ph);
}
.lb-split__text {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #2b2b2b;
  color: var(--white);
}
.lb-split__eyebrow {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 20px;
}
.lb-split__title {
  font-family: var(--font-head);
  font-size: clamp(44px, 4.5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 24px;
}
.lb-split__body {
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray-mid);
  margin-bottom: 40px;
  max-width: 300px;
}
.lb-split__btn {
  width: fit-content;
}

/* ── BLOG ── */
.blog-prev {
  padding: 80px var(--gutter);
}
.blog-prev__eyebrow {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 12px;
}
.blog-prev__title {
  font-family: var(--font-head);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--dark);
  margin-bottom: 48px;
}
.blog-prev__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}
.bp-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.bp-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--ph);
  height: auto;
  margin-bottom: 18px;
}
.bp-card__date {
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 8px;
}
.bp-card__name {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--dark);
  margin-bottom: 12px;
}
.bp-card__leer {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.2s;
}
.bp-card:hover .bp-card__leer { opacity: 0.65; }

/* ── FOOTER (home-specific light version) ── */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--gray-sep);
  padding: 48px var(--gutter) 0;
}
.site-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
}
.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.site-footer__name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--dark);
}
.site-footer__domain {
  font-size: 12px;
  color: var(--gray-mid);
}
.site-footer__nav {
  display: flex;
  gap: 32px;
}
.site-footer__nav a {
  font-size: 13px;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer__nav a:hover { color: var(--red); }
.site-footer__bottom {
  border-top: 1px solid var(--gray-sep);
  padding: 20px 0;
}
.site-footer__bottom p {
  font-size: 12px;
  color: var(--gray-mid);
}
