/* =========================================================================
   BAR BONAMY — home.css
   Homepage-specifieke stijl, bovenop css/site.css (design-tokens + chrome).
   Eigen selectors, waarden qua schaal/spacing/kleur geïnspireerd op de
   referentiesite in _reference/ maar zelf geschreven.
   ========================================================================= */

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  padding: var(--sp-lg) var(--sp-md) var(--sp-md);
  text-align: center;
}
.hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  line-height: 0.95;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--c-cream);
}
.hero__sub {
  margin: var(--sp-sm) auto 0;
  max-width: 560px;
  font-size: var(--fs-body-lg);
  line-height: 1.6;
  color: var(--c-cream-soft);
}
.hero__cta {
  margin-top: var(--sp-md);
  display: flex;
  justify-content: center;
}
.hero__photo-wrap {
  margin: var(--sp-xl) auto 0;
  max-width: 1080px;
  padding: 0 var(--sp-md);
}
.hero__photo {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}
@media (max-width: 720px) {
  .hero { padding: var(--sp-md) var(--sp-sm) var(--sp-sm); }
  .hero__photo-wrap { margin-top: var(--sp-lg); padding: 0 var(--sp-sm); }
  .hero__photo { aspect-ratio: 4 / 3.6; border-radius: var(--radius-md); }
}

/* =========================================================================
   STATS-REGEL
   ========================================================================= */
.home-stats {
  max-width: 1100px;
  margin: var(--sp-xl) auto 0;
  padding: 0 var(--sp-md);
  display: flex;
  justify-content: center;
  gap: clamp(36px, 6vw, 96px);
  flex-wrap: wrap;
  text-align: center;
}
.home-stats__item { max-width: 240px; }
.home-stats__phrase {
  font-family: var(--font-display);
  font-size: clamp(21px, 2.4vw, 30px);
  line-height: 1.08;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--c-cream);
}
.home-stats__label {
  margin-top: 10px;
  font-size: var(--fs-small);
  line-height: 1.5;
  color: var(--c-text-dim);
}
@media (max-width: 640px) {
  .home-stats { margin-top: var(--sp-lg); gap: var(--sp-md); }
}

/* =========================================================================
   DIENST-TEASERS (light cream section, work-section-stijl)
   ========================================================================= */
.home-services {
  margin-top: var(--sp-2xl);
  background: var(--c-cream);
  color: var(--c-bg-900);
  padding: var(--sp-lg) var(--sp-md) var(--sp-xl);
}
.home-services__head {
  max-width: 1240px;
  margin: 0 auto var(--sp-lg);
}
.home-services__eyebrow {
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: rgba(6, 6, 6, 0.48);
  margin-bottom: var(--sp-2xs);
}
.home-services__title {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  line-height: 0.96;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  max-width: 720px;
}
.home-services__grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
}
.service-card {
  display: block;
  color: inherit;
  text-decoration: none;
}
.service-card__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #2a2624;
  isolation: isolate;
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform var(--dur-slow) var(--ease-smooth);
}
.service-card:hover .service-card__media img,
.service-card:focus-visible .service-card__media img { transform: scale(1.06); }
.service-card__tag {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 12px 22px;
  background: rgba(18, 18, 18, 0.4);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-pill);
  color: var(--c-cream);
  font-size: 15px;
  font-weight: 600;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}
.service-card__text {
  margin-top: var(--sp-sm);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: rgba(6, 6, 6, 0.72);
  max-width: 46ch;
}
.service-card__link {
  margin-top: var(--sp-xs);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-bg-900);
}
.service-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--dur-fast) var(--ease-smooth);
}
.service-card:hover .service-card__link svg,
.service-card:focus-visible .service-card__link svg { transform: translateX(4px); }

@media (max-width: 900px) {
  .home-services__grid { grid-template-columns: 1fr; gap: var(--sp-lg); }
}
@media (max-width: 720px) {
  .home-services { margin-top: var(--sp-xl); padding: var(--sp-lg) var(--sp-sm) var(--sp-lg); }
}

/* =========================================================================
   "WAAROM BAR BONAMY?" — we-do-stijl (donker, twee kolommen)
   ========================================================================= */
.home-why { padding: var(--sp-2xl) var(--sp-md); }
.home-why__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--sp-xl);
  align-items: start;
  position: relative;
}
.home-why__inner::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: calc(45% - 1px);
  width: 1px;
  background: var(--c-hairline);
}
.home-why__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.6vw, 62px);
  line-height: 0.96;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--c-cream);
  position: sticky;
  top: 120px;
}
.home-why__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}
.home-why__item {
  display: flex;
  gap: var(--sp-sm);
  align-items: flex-start;
  padding-bottom: var(--sp-md);
  border-bottom: 1px solid var(--c-hairline);
}
.home-why__item:last-child { border-bottom: none; padding-bottom: 0; }
.home-why__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-chip-bg);
  display: grid;
  place-items: center;
  color: var(--c-accent);
}
.home-why__icon svg { width: 16px; height: 16px; }
.home-why__text {
  font-size: var(--fs-body-lg);
  line-height: 1.5;
  color: var(--c-cream-soft);
  padding-top: 6px;
}
@media (max-width: 900px) {
  .home-why__inner { grid-template-columns: 1fr; gap: var(--sp-md); }
  .home-why__inner::before { display: none; }
  .home-why__title { position: static; }
}
@media (max-width: 720px) {
  .home-why { padding: var(--sp-xl) var(--sp-sm); }
}

/* =========================================================================
   TESTIMONIAL-TEASER — clients-section-stijl (donker, gecentreerd)
   ========================================================================= */
.home-proof { padding: var(--sp-xl) var(--sp-md); text-align: center; }
.home-proof__chip {
  display: inline-block;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--c-hairline-soft);
  background: var(--c-chip-bg);
  font-size: 13px;
  color: var(--c-cream-soft);
}
.home-proof__title {
  margin-top: var(--sp-sm);
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--c-cream);
}
.home-proof__text {
  margin: var(--sp-xs) auto 0;
  max-width: 480px;
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--c-text-dim);
}
.home-proof__logos {
  margin-top: var(--sp-lg);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-md);
  flex-wrap: wrap;
}
.home-proof__logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  border-radius: var(--radius-md);
  background: var(--c-cream);
}
.home-proof__logo-card img { height: 26px; width: auto; object-fit: contain; display: block; }
.home-proof__cta { margin-top: var(--sp-lg); display: flex; justify-content: center; }
@media (max-width: 720px) {
  .home-proof { padding: var(--sp-lg) var(--sp-sm); }
  .home-proof__logos { gap: var(--sp-sm); }
}

/* =========================================================================
   GROTE CTA-SECTIE — cta-session-stijl
   ========================================================================= */
.home-cta {
  position: relative;
  max-width: 1400px;
  margin: var(--sp-lg) auto var(--sp-2xl);
  margin-left: var(--sp-md);
  margin-right: var(--sp-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #14110f;
  min-height: 480px;
  display: flex;
}
.home-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 22%;
}
.home-cta__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.68) 32%, rgba(0,0,0,0.24) 64%, rgba(0,0,0,0.08) 100%),
    linear-gradient(0deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 46%);
}
.home-cta__inner {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 8% 7%;
  max-width: 620px;
}
.home-cta__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.96;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--c-cream);
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.45);
}
.home-cta__sub {
  margin: var(--sp-sm) 0 0;
  max-width: 420px;
  font-size: var(--fs-body-lg);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}
.home-cta__btn { margin-top: var(--sp-md) !important; }
.home-cta__meta {
  margin: var(--sp-sm) 0 0;
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
  flex-wrap: wrap;
}
.home-cta__meta-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--c-accent); flex: none; }
.home-cta__meta-sep { width: 3px; height: 3px; border-radius: 50%; background: rgba(255, 255, 255, 0.4); flex: none; }
@media (max-width: 640px) {
  .home-cta { min-height: 420px; margin-left: var(--sp-sm); margin-right: var(--sp-sm); }
  .home-cta__inner { padding: 12% 8%; }
  .home-cta__btn { width: 100%; justify-content: center; }
}

/* =========================================================================
   CLIENTS — bedrijvenwand met wisselende logo's (placeholders)
   ========================================================================= */
.home-clients { padding: 150px 32px 20px; text-align: center; }
.home-clients__chip {
  display: inline-block;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--c-hairline);
  background: var(--c-chip-bg);
  font-size: 13px;
  color: #cfcfcf;
}
.logo-wall {
  display: flex;
  justify-content: center;
  max-width: 1100px;
  margin: 34px auto 0;
}
.logo-wall__list { display: flex; flex-flow: row nowrap; align-items: center; width: 100%; }
.logo-wall__slot {
  position: relative;
  width: calc(100% / 6);
  overflow: hidden;
}
.logo-wall__slot::before { content: ""; display: block; padding-top: 50%; }
.logo-wall__logo {
  position: absolute; inset: 0;
  display: flex; justify-content: center; align-items: center;
}
.logo-wall__logo svg, .logo-wall__logo img {
  max-height: 30px; max-width: 70%;
  width: auto; height: auto;
  opacity: 0.6;
  transition: opacity 0.35s ease;
}
.logo-wall__slot:hover .logo-wall__logo svg,
.logo-wall__slot:hover .logo-wall__logo img { opacity: 1; }
.logo-wall__pool { display: none; }
@media (max-width: 991px) {
  .logo-wall__slot { width: 25%; }
  .logo-wall__list .logo-wall__slot:nth-child(n+5) { display: none; }
}
@media (max-width: 600px) {
  .logo-wall__slot { width: 33.333%; }
  .logo-wall__list .logo-wall__slot:nth-child(n+4) { display: none; }
}

/* =========================================================================
   ARC — boog van fotokaarten + chip + caption
   ========================================================================= */
.home-arc { padding: 80px 0 40px; overflow: hidden; }
.arc-wrap {
  position: relative;
  max-width: 1100px;
  height: 300px;
  margin: 0 auto;
  perspective: 1200px;
}
.arc-card {
  position: absolute;
  top: 50%; left: 50%;
  width: 150px; height: 220px;
  border-radius: 16px;
  overflow: hidden;
  background: #2a2a2a;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transform-origin: center center;
  transition: transform 0.6s ease;
}
.arc-card img { width: 100%; height: 100%; object-fit: cover; }
.arc-card:hover { transform: translate(-50%, -50%) translate(var(--arc-x), calc(var(--arc-y) - 14px)) rotate(0deg) scale(1.06) !important; z-index: 5; }
.arc-chip {
  pointer-events: none;
  position: absolute;
  top: 46%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.92);
  color: #111;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  z-index: 10;
}
.arc-chip__star { display: inline-flex; width: 16px; height: 16px; color: #3d7a3d; }
.arc-chip__star svg { width: 100%; height: 100%; }
.arc-caption {
  max-width: 640px;
  margin: 50px auto 0;
  padding: 0 24px;
  text-align: center;
  font-size: 22px;
  line-height: 1.45;
  color: #efefef;
}
@media (max-width: 720px) {
  .arc-wrap { height: 210px; }
  .arc-card { width: 104px; height: 152px; border-radius: 12px; }
  .arc-caption { font-size: 18px; }
}

/* =========================================================================
   HERO — videocirkel (klik = showreel)
   ========================================================================= */
.hero__play {
  position: absolute;
  right: clamp(16px, 5vw, 72px);
  bottom: -34px;
  z-index: 20;
  width: clamp(110px, 12vw, 160px);
  height: clamp(110px, 12vw, 160px);
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--c-cream);
  box-shadow: 0 16px 44px rgba(0,0,0,0.55);
  cursor: pointer;
  transition: transform 0.4s var(--ease-smooth);
}
.hero__play:hover { transform: scale(1.06); }
.hero__play video, .hero__play img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__play-label {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: rgba(0,0,0,0.25);
  color: #fff;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
}
.hero__photo-wrap { position: relative; }

/* =========================================================================
   REELS — telefoonkaarten met hover-play
   ========================================================================= */
.home-reels { padding: 130px 32px 30px; }
.home-reels__head { max-width: 1100px; margin: 0 auto 42px; text-align: center; }
.home-reels__chip {
  display: inline-block;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--c-hairline);
  background: var(--c-chip-bg);
  font-size: 13px;
  color: #cfcfcf;
}
.home-reels__title {
  margin-top: 22px;
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  line-height: 0.98;
  text-transform: uppercase;
  color: var(--c-cream);
}
.home-reels__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.reel-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  background: #1a1a1a;
  cursor: pointer;
  transition: transform 0.45s var(--ease-smooth);
}
.reel-card:hover { transform: translateY(-8px); }
.reel-card img, .reel-card video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.reel-card video { opacity: 0; transition: opacity 0.35s ease; }
.reel-card.is-playing video { opacity: 1; }
.reel-card__badge {
  position: absolute;
  left: 12px; bottom: 12px;
  z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-size: 12px; font-weight: 600;
}
.reel-card__badge svg { width: 13px; height: 13px; }
@media (max-width: 900px) {
  .home-reels__grid { grid-template-columns: repeat(2, 1fr); }
}

.home-reels__cta { display: flex; justify-content: center; margin-top: 42px; }

/* hero-CTA: niet laten wikkelen */
.hero__cta .btn-solid { white-space: nowrap; }
