/* ============================================================
   WINDSOR · hero v2, "Naturaleza que inspira"
   Photographic full-bleed hero: generated valley + hands plate,
   overlay chrome. Slim high nav, cart instead of account.
   Tableau band = the product moment right after the hero.
   ============================================================ */

.hero2 {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  background: #17100a;
}

/* both plates share one canvas ratio (43:24) and one fit, which is what keeps
   the background and the hands cutout registered at any crop */
.hero2 .bg,
.hero2 .hands {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 62%;
  user-select: none;
  pointer-events: none;
}
.hero2 .bg { z-index: 0; }
.hero2 .hands { z-index: 4; }
.chips { z-index: 5; }

/* legibility washes, kept light */
.hero2::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: clamp(150px, 24%, 260px);
  z-index: 2;
  background: linear-gradient(180deg, rgba(12, 8, 3, .5), transparent);
  pointer-events: none;
}

.hero2::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(12, 8, 3, .4), transparent 22%);
  pointer-events: none;
}

/* ---------- top chrome: utility strip + main nav ---------- */

.h2-strip {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 11;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  padding: 0 clamp(1.6rem, 3.4vw, 3.2rem);
  font-family: var(--sans);
  font-weight: 400;
  font-size: .63rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(233, 225, 209, .74);
  background: linear-gradient(180deg, rgba(10, 6, 2, .52), rgba(10, 6, 2, .1));
  border-bottom: 1px solid rgba(217, 178, 90, .14);
}
.h2-strip .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); opacity: .85; }

.hero2-top {
  position: absolute;
  top: 38px; left: 0; right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 2.4rem;
  padding: 1.4rem clamp(1.6rem, 3.4vw, 3.2rem) 1.25rem;
}

.hero2-top::after {
  content: "";
  position: absolute;
  left: clamp(1.6rem, 3.4vw, 3.2rem);
  right: clamp(1.6rem, 3.4vw, 3.2rem);
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 178, 90, .3) 14%, rgba(217, 178, 90, .3) 86%, transparent);
}

.h2-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .34rem;
  text-decoration: none;
  flex: 0 0 auto;
}
.h2-logo img { height: 60px; width: auto; filter: drop-shadow(0 4px 12px rgba(10, 6, 2, .55)); }
.h2-logo span {
  font-family: var(--sans);
  font-weight: 500;
  font-size: .6rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: #f0e3c6;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(10, 6, 2, .95), 0 0 16px rgba(10, 6, 2, .8);
}

.h2-nav {
  display: flex;
  gap: clamp(1.8rem, 2.8vw, 3rem);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.h2-nav a {
  font-family: var(--sans);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  padding-bottom: .55rem;
  border-bottom: 2px solid transparent;
  text-shadow: 0 1px 10px rgba(10, 6, 2, .6);
  transition: color .2s ease, border-color .2s ease;
}
.h2-nav a:hover { color: var(--gold-2); }
.h2-nav a.active { border-color: var(--gold); }

.h2-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.h2-actions .divider { width: 1px; height: 24px; background: rgba(200, 161, 76, .4); }
.h2-actions a {
  color: var(--cream);
  display: inline-flex;
  padding: .35rem;
  transition: color .2s ease, transform .2s ease;
}
.h2-actions a:hover { color: var(--gold-2); transform: translateY(-1px); }
.h2-actions svg { width: 23px; height: 23px; }

/* ---------- left vertical rail ---------- */

.h2-rail {
  position: absolute;
  left: clamp(1rem, 2.1vw, 2.3rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  pointer-events: none;
}
.h2-rail .ln {
  width: 1px;
  height: clamp(34px, 6vh, 74px);
  background: linear-gradient(180deg, transparent, rgba(217, 178, 90, .6));
}
.h2-rail .ln-b {
  width: 1px;
  border-radius: 0;
  padding: 0;
  background: linear-gradient(0deg, transparent, rgba(217, 178, 90, .6));
}
.h2-rail .txt {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--sans);
  font-weight: 500;
  font-size: .68rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: rgba(233, 225, 209, .82);
  text-shadow: 0 1px 10px rgba(10, 6, 2, .75);
}

/* ---------- right facts stack ---------- */

.h2-facts {
  position: absolute;
  right: clamp(2rem, 4.4vw, 5rem);
  top: 27%;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.h2-facts .fact { min-width: 9rem; }
.h2-facts .fact + .fact {
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(217, 178, 90, .28);
}

.h2-facts b {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-variant-numeric: lining-nums;
  font-size: clamp(1.35rem, 2.05vw, 2.15rem);
  line-height: 1;
  color: #f3ead6;
  text-shadow: 0 2px 16px rgba(10, 6, 2, .6);
}
.h2-facts span {
  font-family: var(--sans);
  font-weight: 500;
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-2);
  text-shadow: 0 1px 10px rgba(10, 6, 2, .7);
}

/* ---------- left editorial note (shares the chips' left axis) ---------- */

.h2-note {
  position: absolute;
  left: clamp(4.5rem, 10.5vw, 12rem);
  top: 30%;
  z-index: 6;
  max-width: 16rem;
}

.h2-note .rule {
  display: block;
  width: 46px;
  height: 1px;
  margin-bottom: 1.1rem;
  background: linear-gradient(90deg, rgba(217, 178, 90, .9), rgba(217, 178, 90, .15));
}

.h2-note p {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(.92rem, 1.05vw, 1.06rem);
  line-height: 1.75;
  color: #ece4d4;
  text-shadow: 0 1px 12px rgba(10, 6, 2, .75);
  margin: 0;
}

/* ---------- centered headline (behind the hands layer) ---------- */

.hero3-copy {
  position: absolute;
  left: 50%;
  top: 21%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  width: max-content;
  max-width: 96vw;
}

.hero3-copy .tq {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.9rem, 3.8vw, 3.9rem);
  color: #f3ead6;
  text-shadow: 0 2px 20px rgba(10, 6, 2, .45);
  margin-bottom: .2em;
}

.hero3-copy .wd {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(4.2rem, 11.2vw, 12.5rem);
  line-height: .92;
  letter-spacing: .012em;
  color: #f3ead6;
  text-shadow: 0 6px 44px rgba(10, 6, 2, .35);
  margin: 0;
}

/* ---------- (unused v2 copy block kept for reference) ---------- */

.hero2-copy {
  position: absolute;
  left: clamp(3rem, 7vw, 7.5rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  max-width: 36rem;
}

.hero2-copy h1 {
  font-family: 'Cormorant Garamond', var(--serif);
  font-weight: 600;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: .015em;
  text-transform: uppercase;
  margin: 0 0 1.4rem;
}
.hero2-copy h1 .l1 { display: block; color: var(--white); text-shadow: 0 3px 24px rgba(10, 6, 2, .55); }
.hero2-copy h1 .l2 { display: block; color: var(--gold-2); text-shadow: 0 3px 24px rgba(10, 6, 2, .55); }

.hero2-copy p {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(1rem, 1.15vw, 1.14rem);
  line-height: 1.7;
  color: #efe7d6;
  max-width: 26rem;
  text-shadow: 0 1px 12px rgba(10, 6, 2, .6);
  margin-bottom: 2.1rem;
}

.h2-more {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.h2-more .circ {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  transition: background .25s ease, transform .25s ease;
}
.h2-more .circ svg { width: 18px; height: 18px; stroke: var(--gold-2); transition: transform .25s ease; }
.h2-more:hover .circ { background: rgba(200, 161, 76, .16); transform: translateX(3px); }

/* ---------- category chips ---------- */

.chips {
  position: absolute;
  left: clamp(4.5rem, 10.5vw, 12rem);
  top: 58%;
  z-index: 5;
  display: flex;
  gap: clamp(1.6rem, 2.6vw, 3rem);
}

.chips::before {
  content: "";
  position: absolute;
  top: clamp(45px, 4.25vw, 62px);
  left: -1.6rem; right: -1.6rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 178, 90, .6) 12%, rgba(217, 178, 90, .6) 88%, transparent);
}

.chip {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
}

.chip .ring {
  width: clamp(90px, 8.5vw, 124px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid rgba(217, 178, 90, .9);
  box-shadow: 0 14px 34px rgba(10, 6, 2, .5), 0 0 0 7px rgba(200, 161, 76, .1);
  transition: transform .35s ease, box-shadow .35s ease;
}
.chip .ring img { width: 100%; height: 100%; object-fit: cover; }
.chip:hover .ring { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(10, 6, 2, .6), 0 0 0 7px rgba(200, 161, 76, .2); }

.chip b {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 1px 10px rgba(10, 6, 2, .7);
}

.chip svg { width: 20px; height: 20px; stroke: var(--gold-2); }

/* ---------- anchored bottom bar ---------- */

.hero2-bar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.15rem clamp(3rem, 7vw, 7.5rem);
  background: linear-gradient(180deg, rgba(12, 8, 3, 0), rgba(12, 8, 3, .58) 40%, rgba(12, 8, 3, .72));
  border-top: 1px solid rgba(200, 161, 76, .22);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.hb-item {
  display: flex;
  align-items: center;
  gap: .95rem;
  text-decoration: none;
}

.hb-item > svg { width: 30px; height: 30px; stroke: var(--gold-2); flex: 0 0 auto; }

.hb-item div {
  font-family: var(--sans);
  font-weight: 500;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  line-height: 1.75;
  color: var(--cream);
}

.hb-link .circ {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: rgba(200, 161, 76, .14);
  display: grid;
  place-items: center;
  transition: background .25s ease;
}
.hb-link .circ svg { width: 16px; height: 16px; stroke: var(--gold-2); }
.hb-link:hover .circ { background: rgba(200, 161, 76, .3); }

/* ---------- tableau: the product moment after the hero ----------
   The copy used to sit ON the photo and always collided with the boxes,
   so the band is now split: full-bleed shot, then a dark caption bar. */

.tableau {
  position: relative;
  background: var(--bg);
  overflow: hidden;
}

.tableau .t-bg {
  width: 100%;
  height: clamp(340px, 46vw, 660px);
  object-fit: cover;
  object-position: center 44%;
}

.t-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: clamp(1.8rem, 3vw, 2.6rem) 0 clamp(2rem, 3.4vw, 3rem);
  border-top: 1px solid var(--line);
}
.t-inner .h-display { font-size: clamp(1.5rem, 2.3vw, 2.2rem); }
.t-inner .overline { margin-bottom: .7rem; }

/* ---------- responsive ---------- */

@media (max-width: 1240px) {
  .chips .ring { width: clamp(80px, 8vw, 104px); }
  .h2-facts .fact { min-width: 7.5rem; }
  .h2-note { max-width: 13.5rem; }
}

@media (max-width: 1020px) {
  .chips { left: clamp(3rem, 7vw, 7rem); }
  .h2-facts, .h2-rail, .h2-note { display: none; }
  .hero2-copy { max-width: 30rem; }
}

@media (max-width: 760px) {
  .h2-nav { display: none; }
  .h2-strip { font-size: .55rem; letter-spacing: .22em; }
  .chips { display: none; }

  .h2-logo img { height: 46px; }
  .hero2-copy { left: 1.4rem; right: 1.4rem; top: auto; bottom: 7.5rem; transform: none; }
  .hero2-bar { display: none; }
  .hero2::after {
    background:
      linear-gradient(0deg, rgba(12, 8, 3, .72), transparent 55%),
      linear-gradient(90deg, rgba(12, 8, 3, .25), transparent 60%);
  }
}
