/* ==========================================================================
   BHD — maison de mode
   ========================================================================== */
body[data-page="bhd"]{
  --accent: var(--crimson);
  --accent-bright: var(--crimson-bright);
}

/* ---- Hero ---- */
.bhd-hero{
  position: relative;
  padding: calc(var(--nav-h) + 84px) 0 96px;
  background:
    radial-gradient(ellipse 700px 480px at 88% 10%, rgba(140,31,46,0.16), transparent 60%),
    var(--ink);
  overflow: hidden;
}
.bhd-hero-grid{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.bhd-hero-copy h1{
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.06;
  margin: 22px 0 24px;
}
.bhd-hero-copy p{
  color: var(--parchment-dim);
  font-size: 16.5px;
  line-height: 1.8;
  max-width: 480px;
}
.bhd-hero-plaque{ display: flex; justify-content: center; }
.bhd-plaque{
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/3;
  padding: 12px;
}
.bhd-plaque img{ max-width: 96%; max-height: 96%; }

/* ---- Hero photo slideshow (replaces the static plaque) ---- */
.bhd-hero-slideshow{ display: flex; justify-content: center; }
.hs-frame{
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px -36px rgba(0,0,0,0.7);
}
.hs-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  animation: hsCycle 16s infinite;
}
.hs-img:nth-child(1){ animation-delay: 0s; }
.hs-img:nth-child(2){ animation-delay: 4s; }
.hs-img:nth-child(3){ animation-delay: 8s; }
.hs-img:nth-child(4){ animation-delay: 12s; }
@keyframes hsCycle{
  0%   { opacity: 0; transform: scale(1.05); }
  3%   { opacity: 1; transform: scale(1.05); }
  22%  { opacity: 1; transform: scale(1.0); }
  25%  { opacity: 0; transform: scale(1.0); }
  100% { opacity: 0; }
}
.hs-badge{
  position: absolute;
  left: 16px; bottom: 16px;
  width: 74px; height: 74px;
  padding: 10px;
  z-index: 2;
  box-shadow: 0 14px 28px -12px rgba(0,0,0,0.6);
}
@media (prefers-reduced-motion: reduce){
  .hs-img{ animation: none; opacity: 0; }
  .hs-img:first-child{ opacity: 1; }
}
@media (max-width: 900px){
  .hs-frame{ max-width: 340px; }
}
@media (max-width: 900px){
  .bhd-hero-grid{ grid-template-columns: 1fr; }
  .bhd-hero-plaque{ order: -1; }
  .bhd-plaque{ max-width: 320px; }
}




/* ---- Lookbook filter tabs ---- */
.lookbook-tabs{
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.lb-tab{
  background: none;
  border: 1px solid var(--line-strong);
  color: var(--parchment-dim);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 11px 20px;
  transition: all .25s var(--ease);
}
.lb-tab:hover{ border-color: var(--accent); color: var(--parchment); }
.lb-tab.active{ background: var(--accent); border-color: var(--accent); color: var(--ink); }

/* ---- Lookbook masonry grid ---- */
.lookbook-grid{
  column-count: 3;
  column-gap: 18px;
}
.lb-card{
  break-inside: avoid;
  margin: 0 0 18px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: opacity .35s var(--ease), transform .4s var(--ease);
}
.lb-card.lb-hidden{ display: none; }
.lb-card img{
  width: 100%;
  display: block;
  transition: filter .5s var(--ease);
}
.lb-card:hover img{ filter: brightness(1.08) saturate(1.12); }
.lb-card figcaption{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 20px 18px;
  background: linear-gradient(0deg, rgba(6,7,10,0.88), transparent);
  display: flex;
  flex-direction: column;
  gap: 3px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.lb-card:hover figcaption{ opacity: 1; transform: translateY(0); }
.lb-card figcaption span{
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--parchment);
}
.lb-card figcaption em{
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--accent-bright);
}
@media (max-width: 900px){ .lookbook-grid{ column-count: 2; } }
@media (max-width: 560px){ .lookbook-grid{ column-count: 1; } }
