﻿/* ════════════════════════════════════════════════════════════════════════
   &BOLD — studio relationship
   v10 — full rebuild.  Cinematic split: full-bleed autoplay video on the
   left, ink editorial column on the right.  Refined italic display
   heading, refined CTA, and a bottom fade-bleed that hands off to the
   cream contact section.  Keeps the existing class API.
   ════════════════════════════════════════════════════════════════════════ */

.andbold {
  position: relative;
  background: #141210;
  color: var(--warm-white);
  overflow: hidden;
  isolation: isolate;
}

/* Top hairline */
.andbold::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176, 141, 87, 0.32), transparent);
  z-index: 2;
}

/* Ambient glow behind the entire section */
.andbold::after {
  content: '';
  position: absolute; inset: -10%;
  background:
    radial-gradient(ellipse 60% 60% at 80% 30%, rgba(176, 141, 87, 0.10), transparent 64%),
    radial-gradient(ellipse 70% 50% at 10% 80%, rgba(120,  95, 60,  0.08), transparent 60%);
  filter: blur(40px);
  z-index: 0; pointer-events: none;
  animation: sectionGlow 28s ease-in-out infinite;
}

/* ─ Split grid: video plate + text column ─────────────────────────────── */
.andbold-grid {
  position: relative; z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  min-height: clamp(620px, 88vh, 940px);
}

/* ─ Video plate (left) ────────────────────────────────────────────────── */
.andbold-photo-col {
  position: relative;
  overflow: hidden;
  background: #0a0908;
}
.andbold-photo-vid {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  /* Soft fade towards the text column so the join feels cinematic */
  -webkit-mask-image: linear-gradient(90deg,
    rgba(0, 0, 0, 1)    0%,
    rgba(0, 0, 0, 1)    72%,
    rgba(0, 0, 0, 0.55) 92%,
    rgba(0, 0, 0, 0)    100%);
          mask-image: linear-gradient(90deg,
    rgba(0, 0, 0, 1)    0%,
    rgba(0, 0, 0, 1)    72%,
    rgba(0, 0, 0, 0.55) 92%,
    rgba(0, 0, 0, 0)    100%);
  filter: contrast(1.04) saturate(1.05) brightness(0.94);
}

/* Inner vignette + faint film texture */
.andbold-photo-col::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 55%, transparent 50%, rgba(10, 9, 8, 0.55) 100%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.012) 0 1px, transparent 1px 3px);
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* Corner brackets on the video plate */
.andbold-photo-col::before {
  content: '';
  position: absolute;
  top: 18px; left: 18px;
  width: 22px; height: 22px;
  border-top: 1px solid rgba(196, 167, 108, 0.50);
  border-left: 1px solid rgba(196, 167, 108, 0.50);
  z-index: 2;
  pointer-events: none;
}

/* ─ Text column (right) ───────────────────────────────────────────────── */
.andbold-text-col {
  position: relative;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vh, 100px) clamp(28px, 5vw, 80px);
  min-width: 0;
}
.andbold-text-col .section-kicker { justify-content: flex-start; margin-bottom: 18px; }

.andbold-heading {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--warm-white);
  text-wrap: balance;
  padding-bottom: 0.08em;
}
.andbold-heading strong {
  font-weight: 400;
  color: var(--warm-white);
}
.andbold-heading em {
  font-style: italic;
  font-weight: 400;
  color: var(--bronze-pale);
  font-size: 1.15em;
  padding-right: 0.04em;
}

.andbold-body {
  margin: clamp(20px, 3vh, 32px) 0 0;
  display: flex; flex-direction: column;
  gap: clamp(12px, 1.6vh, 18px);
  max-width: 46ch;
}
.andbold-body p {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(14.5px, 1.05vw, 16px);
  line-height: 1.78;
  color: rgba(232, 226, 214, 0.78);
}
.andbold-body p em {
  font-style: italic;
  color: var(--bronze-pale);
}

/* Signoff: CTA + identity line */
.andbold-signoff {
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(28px, 4vh, 44px);
  padding-top: clamp(20px, 2.4vh, 28px);
  border-top: 1px solid rgba(196, 167, 108, 0.18);
  flex-wrap: wrap;
  row-gap: 16px;
}

.andbold-cta {
  position: relative;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 26px;
  border: 1px solid rgba(196, 167, 108, 0.40);
  font-family: var(--font-sc);
  font-size: 10.5px;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: var(--warm-white);
  overflow: hidden;
  isolation: isolate;
  transition:
    gap          0.55s var(--ease-out, cubic-bezier(0.16,1,0.3,1)),
    color        0.4s ease,
    border-color 0.4s ease,
    transform    0.55s var(--ease-out, cubic-bezier(0.16,1,0.3,1));
}
.andbold-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--bronze);
  transform: translateX(-101%);
  transition: transform 0.55s var(--ease-out, cubic-bezier(0.16,1,0.3,1));
  z-index: -1;
}
.andbold-cta:hover {
  gap: 18px;
  color: var(--ink);
  border-color: var(--bronze);
  transform: translateY(-2px);
}
.andbold-cta:hover::before { transform: translateX(0); }
.andbold-cta svg { stroke: currentColor; }

.andbold-ident {
  display: inline-flex; align-items: baseline; gap: 14px;
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(14px, 1.1vw, 16px);
  color: rgba(232, 226, 214, 0.66);
  min-width: 0;
}
.andbold-ident::before {
  content: '';
  width: 28px; height: 1px;
  background: rgba(196, 167, 108, 0.42);
  align-self: center;
  flex-shrink: 0;
}
.andbold-ident small {
  font-family: var(--font-sc);
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(196, 167, 108, 0.62);
}

/* Bottom fade-bleed that hands off to the cream contact section */
.andbold-section-bleed {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 180px;
  background: linear-gradient(180deg, transparent 0%, var(--cream) 100%);
  pointer-events: none;
  z-index: 4;
}

/* ─ Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .andbold-grid {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }
  .andbold-photo-col {
    aspect-ratio: 16 / 10;
    width: 100%;
  }
  .andbold-photo-vid {
    /* On mobile the fade is vertical so it hands off to the text column below */
    -webkit-mask-image: linear-gradient(180deg,
      rgba(0, 0, 0, 1)    0%,
      rgba(0, 0, 0, 1)    74%,
      rgba(0, 0, 0, 0.55) 92%,
      rgba(0, 0, 0, 0)    100%);
            mask-image: linear-gradient(180deg,
      rgba(0, 0, 0, 1)    0%,
      rgba(0, 0, 0, 1)    74%,
      rgba(0, 0, 0, 0.55) 92%,
      rgba(0, 0, 0, 0)    100%);
  }
  .andbold-text-col {
    padding: clamp(36px, 6vh, 72px) clamp(22px, 5vw, 48px) clamp(120px, 18vh, 200px);
  }
}
@media (max-width: 540px) {
  .andbold-signoff { flex-direction: column; align-items: flex-start; gap: 18px; }
  .andbold-cta { padding: 13px 22px; font-size: 10px; letter-spacing: 0.36em; }
  .andbold-ident { font-size: 13.5px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .andbold::after { animation: none !important; }
  .andbold-cta::before,
  .andbold-cta { transition: none !important; }
  .andbold-photo-vid { animation: none !important; }
}
