/* ============================================================
   EMAGINE BY BUKOLA — home page styles (hero + sections)
   ============================================================ */

/* shared hero */
.hero { position: relative; }
.hero-h { font-size: clamp(46px, 7.4vw, 104px); font-weight: 500; }
.hero-sub { max-width: 44ch; margin-top: 22px; }
.hero-cta { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.on-img { color: #f6f1e7 !important; }

/* ---- Full-colour motion collage hero ---- */
.hero-collage { position: relative; height: 94vh; min-height: 620px; max-height: 1000px; overflow: hidden; background: #12100e; }
.hcol-grid { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.hcol-panel { position: relative; overflow: hidden; }
.hcol-panel + .hcol-panel { border-left: 1px solid rgba(255,255,255,0.06); }
.hcol-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 28%;
  will-change: transform; transform-origin: center;
}
/* still layer sits underneath; video (when it decodes) covers it fully */
.hcol-still { z-index: 1; }
.hcol-video { z-index: 2; background: transparent; }
/* four distinct, slow motion tracks so no two adjacent panels move alike */
.kb-a { animation: kb-a 26s ease-in-out infinite alternate; }
.kb-b { animation: kb-b 30s ease-in-out infinite alternate; animation-delay: -6s; object-position: center 22%; }
.kb-c { animation: kb-c 28s ease-in-out infinite alternate; animation-delay: -12s; }
.kb-d { animation: kb-d 32s ease-in-out infinite alternate; animation-delay: -3s; object-position: center 20%; }
@keyframes kb-a { from { transform: scale(1.06) translate(0, 0); } to { transform: scale(1.20) translate(-2.5%, -3%); } }
@keyframes kb-b { from { transform: scale(1.18) translate(2%, 2.5%); } to { transform: scale(1.04) translate(-1.5%, -1%); } }
@keyframes kb-c { from { transform: scale(1.05) translate(-1.5%, 1.5%); } to { transform: scale(1.19) translate(2.5%, -2.5%); } }
@keyframes kb-d { from { transform: scale(1.08) translate(1.5%, -2%); } to { transform: scale(1.22) translate(-1%, 2.5%); } }

/* per-panel label — full colour media, no wash */
.hcol-tag {
  position: absolute; left: 16px; bottom: 16px; z-index: 3;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
  color: #f3e6c9; text-shadow: 0 1px 10px rgba(0,0,0,0.7);
}
/* keep the outer panels slightly readable behind the centred text, media stays full colour */
.hcol-panel::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(to top, rgba(10,8,6,0.42) 0%, rgba(10,8,6,0.05) 34%, transparent 60%);
}

/* text scrim behind the headline block ONLY — soft radial, fades before panel edges */
.hcol-overlay { position: absolute; inset: 0; z-index: 4; display: grid; place-items: center; padding: 24px; }
.hcol-overlay::before {
  content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: min(1180px, 96%); height: min(620px, 92%);
  background: radial-gradient(ellipse 60% 58% at 50% 50%, rgba(8,6,5,0.72) 0%, rgba(8,6,5,0.5) 42%, rgba(8,6,5,0.18) 68%, transparent 82%);
  z-index: -1; pointer-events: none;
}
.hcol-textwrap { max-width: 900px; text-align: center; color: #faf3e8; }
.hcol-h { font-size: clamp(46px, 7.6vw, 118px); font-weight: 500; line-height: 0.98; color: #fdf7ec; text-shadow: 0 2px 40px rgba(0,0,0,0.5); }
.hcol-sub { max-width: 56ch; margin: 24px auto 0; color: rgba(250,243,232,0.9); }
.hcol-cta { justify-content: center; margin-top: 38px; }
.hero-collage .hcol-cta .btn.ghost { color: #faf3e8; border-color: rgba(250,243,232,0.55); }
.hero-collage .hcol-cta .btn.ghost:hover { background: #faf3e8; color: #17130f; border-color: #faf3e8; }
.hcol-meta { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 30px; font-size: 13px; letter-spacing: 0.02em; color: rgba(250,243,232,0.82); }
.hcol-meta strong { font-weight: 600; color: #f3e6c9; }
.hcol-dot { color: rgba(243,230,201,0.6); }

.hcol-float {
  position: absolute; right: 24px; bottom: 22px; z-index: 5;
  display: flex; flex-direction: column; gap: 3px;
  background: rgba(14,11,9,0.66); backdrop-filter: blur(6px);
  padding: 12px 18px; border-radius: 4px; border: 1px solid rgba(243,230,201,0.22);
}
.hcol-float .mono { font-size: 10px; letter-spacing: 0.2em; color: #e9c97a; }
.hcol-float .serif { font-size: 16px; color: #faf3e8; }

@media (prefers-reduced-motion: reduce) {
  .kb-a, .kb-b, .kb-c, .kb-d { animation: none; transform: scale(1.08); }
}
@media (max-width: 900px) {
  .hero-collage { height: auto; max-height: none; }
  .hcol-grid { position: relative; inset: auto; grid-template-columns: 1fr 1fr; grid-auto-rows: 42vh; }
  .hcol-panel.p3 { border-left: none; }
  .hcol-overlay { position: relative; inset: auto; padding: 64px 22px; background: #17130f; }
  .hcol-overlay::before { display: none; }
  .hcol-float { position: static; align-self: center; margin: 0 auto; }
}
@media (max-width: 520px) {
  .hcol-grid { grid-auto-rows: 34vh; }
}

/* ---- Split hero (home) ---- */
.hero-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; align-items: center; gap: 0; }
.hero-split-text { padding: 160px clamp(40px, 6vw, 96px) 80px; }
.hero-split-media { position: relative; height: 100vh; }
.hero-split-media .ph { height: 100%; }
.hero-float {
  position: absolute; left: 28px; bottom: 28px; background: var(--bg); padding: 16px 22px;
  display: flex; flex-direction: column; gap: 4px; box-shadow: var(--shadow); border-radius: var(--radius);
}
.hero-float .mono { font-size: 10px; letter-spacing: 0.18em; color: var(--accent); }
.hero-float .serif { font-size: 20px; }
.hero-meta { display: flex; gap: 44px; margin-top: 54px; }
.hero-meta div { display: flex; flex-direction: column; gap: 3px; }
.hero-meta strong { font-family: var(--font-display); font-size: 22px; font-weight: 600; }
.hero-meta span { font-size: 12.5px; color: var(--ink-soft); letter-spacing: 0.04em; }

/* ---------- Trust bar ---------- */
.trustbar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.trustbar-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 22px 10px; color: var(--ink); }
.trust-item:not(:last-child) { border-right: 1px solid var(--line); }
.trust-item svg { color: var(--accent); flex: none; }
.trust-t { display: block; font-size: 13.5px; font-weight: 500; letter-spacing: 0.02em; }
.trust-s { display: block; font-size: 12px; color: var(--ink-soft); }

/* ---------- Collections strip ---------- */
.cat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cat-card { display: block; }
.cat-card-btn { display: block; width: 100%; text-align: left; position: relative; border-radius: var(--radius); overflow: hidden; }
.cat-card-btn .ph { transition: transform 1.1s var(--ease); }
.cat-card-btn:hover .ph { transform: scale(1.05); }
.cat-card-btn::after {
  content: "";
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top,
    rgba(5,5,5,.72)  0%,
    rgba(5,5,5,.30) 40%,
    rgba(5,5,5,.04) 70%);
  border-radius: inherit;
  pointer-events: none;
}
.cat-card-cap { position: absolute; left: 16px; bottom: 16px; z-index: 3; display: flex; flex-direction: column; gap: 4px; color: #f6f1e7; }
.cat-card-cap .mono { font-size: 10px; letter-spacing: 0.2em; color: #e9c97a; }
.cat-card-cap .serif { font-size: 22px; }

/* ---------- Press band ---------- */
.press-band { background: var(--surface); }
.press-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.press-media .ph { border-radius: var(--radius); overflow: hidden; }
.press-h { font-size: clamp(34px, 4.4vw, 56px); font-weight: 500; line-height: 1.05; margin: 16px 0 18px; }

/* ---------- Story ---------- */
.story-sec { background: var(--surface); }
.story-grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.story-media .ph { border-radius: var(--radius); overflow: hidden; }
.story-h { font-size: clamp(38px, 5vw, 68px); font-weight: 500; line-height: 1.02; margin: 18px 0 22px; }

/* ---------- Real moments ---------- */
.moments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.moment-card { position: relative; border-radius: var(--radius); overflow: hidden; }
.moment-card::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(to top, rgba(5,5,5,.68) 0%, rgba(5,5,5,.16) 45%, transparent 70%);
}
.moment-cap { position: absolute; left: 16px; bottom: 14px; z-index: 3; color: #f6f1e7; font-size: 13px; letter-spacing: 0.03em; }

/* ---------- Bespoke band ---------- */
.bespoke-band { background: var(--c-deep); color: var(--c-paper); padding: clamp(60px, 8vw, 110px) 0; }
.bespoke-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.bespoke-media .ph { border-radius: var(--radius); overflow: hidden; }
.bespoke-body .eyebrow { color: var(--accent); }
.bespoke-body .lede { color: rgba(244,239,228,0.74); }
.bespoke-h { font-size: clamp(34px, 4.4vw, 60px); font-weight: 500; line-height: 1.04; margin: 18px 0 22px; color: var(--c-paper); max-width: 18ch; }
.bespoke-steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 32px; max-width: 460px; }
.bespoke-step { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-top: 1px solid rgba(244,239,228,0.18); }
.bespoke-step .mono { color: var(--accent); font-size: 13px; }
.bespoke-step span:last-child { font-size: 14px; color: rgba(244,239,228,0.86); }
.bespoke-band .btn { --b-bg: var(--accent); --b-ink: var(--c-deep); }
.bespoke-band .btn:hover { background: var(--c-paper); border-color: var(--c-paper); color: var(--c-deep); }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.faq-head { position: sticky; top: 120px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 0; text-align: left; font-family: var(--font-display); font-size: clamp(20px, 2.2vw, 27px); color: var(--ink); transition: color .3s; }
.faq-q:hover { color: var(--accent); }
.faq-q svg { flex: none; color: var(--accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq-item.open .faq-a { max-height: 240px; }
.faq-a p { padding-bottom: 26px; color: var(--ink-soft); max-width: 60ch; font-size: 15px; }

/* ---------- Responsive home ---------- */
@media (max-width: 1080px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split-media { height: 70vh; order: -1; }
  .hero-split-text { padding: 130px 24px 60px; }
  .cat-strip { grid-template-columns: repeat(2, 1fr); }
  .story-grid, .faq-grid, .bespoke-grid, .press-grid { grid-template-columns: 1fr; }
  .faq-head { position: static; }
  .trustbar-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .moments-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .cat-strip { grid-template-columns: 1fr; }
  .hero-meta { gap: 28px; }
  .bespoke-steps { grid-template-columns: 1fr; }
  .moments-grid { grid-template-columns: 1fr; }
}
