/* benjit — Sparkle Atelier / Fresh Foam */

:root {
  --bn-ice: #F0FDFA;
  --bn-foam: #FFFFFF;
  --bn-aqua: #06B6D4;
  --bn-aqua-deep: #0891B2;
  --bn-teal: #0F766E;
  --bn-mint: #5EEAD4;
  --bn-ink: #134E4A;
  --bn-coral: #FB7185;
  --bn-mist: rgba(19, 78, 74, 0.08);
  --bn-line: rgba(19, 78, 74, 0.12);
  --bn-line-strong: rgba(19, 78, 74, 0.22);
  --bn-font-display: "Outfit", "Zen Maru Gothic", sans-serif;
  --bn-font-body: "Zen Maru Gothic", "Outfit", sans-serif;
  --bn-font-mark: "Syne", "Outfit", sans-serif;
  --bn-nav-h: 64px;
  --bn-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --bn-max: 1120px;
  --bn-wide: 1280px;
  --bn-radius: 1.75rem;
  --bn-radius-sm: 1.15rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; max-width: 100%; }
html, body {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar, body::-webkit-scrollbar, *::-webkit-scrollbar { display: none; width: 0; height: 0; }
body.bn-body {
  margin: 0;
  color: var(--bn-ink);
  font-family: var(--bn-font-body);
  font-size: 16px;
  line-height: 1.75;
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(94, 234, 212, 0.28), transparent 55%),
    radial-gradient(900px 500px at -10% 20%, rgba(6, 182, 212, 0.12), transparent 50%),
    var(--bn-ice);
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}
.bn-hero__media img,
.bn-pagehero__media img,
.bn-split__media img,
.bn-card__pic img,
.bn-film img,
.bn-steps__pic img,
.bn-team__pic img,
.bn-voices__pic img,
.bn-notes__pic img,
.bn-featured__pic img,
.bn-ba img,
.bn-finale__bg img,
.bn-reveal-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--bn-aqua-deep); }
h1, h2, h3, h4 {
  font-family: var(--bn-font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 0.6rem;
}
p { margin: 0 0 0.85rem; }
address { font-style: normal; }
button, input, textarea { font-family: inherit; }

.bn-skip {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  padding: 0.7rem 1.1rem;
  background: var(--bn-ink);
  color: var(--bn-foam);
  border-radius: 999px;
}
.bn-skip:focus { left: 1rem; top: 1rem; }

/* Floating soap bubbles */
.bn-bubbles {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.bn-bubbles i {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(6, 182, 212, 0.28);
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), rgba(94,234,212,0.15) 45%, rgba(6,182,212,0.08));
  animation: bubbleFloat 16s ease-in-out infinite;
}
.bn-bubbles i:nth-child(1) { width: 70px; height: 70px; left: 6%; bottom: -80px; animation-duration: 18s; }
.bn-bubbles i:nth-child(2) { width: 36px; height: 36px; left: 18%; bottom: -60px; animation-duration: 12s; animation-delay: 2s; }
.bn-bubbles i:nth-child(3) { width: 54px; height: 54px; left: 42%; bottom: -90px; animation-duration: 20s; animation-delay: 4s; }
.bn-bubbles i:nth-child(4) { width: 28px; height: 28px; left: 62%; bottom: -50px; animation-duration: 14s; animation-delay: 1s; }
.bn-bubbles i:nth-child(5) { width: 80px; height: 80px; left: 78%; bottom: -100px; animation-duration: 22s; animation-delay: 3s; }
.bn-bubbles i:nth-child(6) { width: 22px; height: 22px; left: 88%; bottom: -40px; animation-duration: 11s; animation-delay: 5s; }
.bn-bubbles i:nth-child(7) { width: 44px; height: 44px; left: 30%; bottom: -70px; animation-duration: 17s; animation-delay: 6s; }
.bn-bubbles i:nth-child(8) { width: 18px; height: 18px; left: 52%; bottom: -30px; animation-duration: 13s; animation-delay: 7s; }

.bn-sparkles { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.bn-sparkles i {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--bn-mint);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--bn-mint);
  animation: pulse 2.4s ease-in-out infinite;
}
.bn-sparkles i:nth-child(1) { top: 18%; left: 12%; }
.bn-sparkles i:nth-child(2) { top: 28%; right: 18%; animation-delay: 0.4s; }
.bn-sparkles i:nth-child(3) { bottom: 30%; left: 22%; animation-delay: 0.8s; width: 6px; height: 6px; }
.bn-sparkles i:nth-child(4) { top: 42%; left: 48%; animation-delay: 1.2s; }
.bn-sparkles i:nth-child(5) { bottom: 22%; right: 28%; animation-delay: 1.6s; }

/* Nav */
.bn-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--bn-nav-h);
  background: rgba(240, 253, 250, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--bn-ease), border-color 0.4s, box-shadow 0.4s;
}
.bn-nav.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--bn-line);
  box-shadow: 0 8px 30px rgba(15, 118, 110, 0.08);
}
.bn-nav__inner {
  max-width: var(--bn-wide);
  margin: 0 auto;
  height: 100%;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.bn-nav__brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--bn-ink);
}
.bn-nav__brand:hover { color: var(--bn-teal); }
.bn-nav__mark {
  color: var(--bn-aqua);
  display: grid;
  place-items: center;
  animation: pulse 3s ease-in-out infinite;
}
.bn-nav__name {
  font-family: var(--bn-font-mark);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.04em;
}
.bn-nav__links {
  display: flex;
  gap: 1.35rem;
  margin-left: auto;
}
.bn-nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--bn-teal);
  position: relative;
  padding: 0.25rem 0;
}
.bn-nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--bn-aqua);
  border-radius: 99px;
  transition: right 0.35s var(--bn-ease);
}
.bn-nav__links a:hover,
.bn-nav__links a.is-on { color: var(--bn-ink); }
.bn-nav__links a.is-on::after,
.bn-nav__links a:hover::after { right: 0; }

/* Buttons */
.bn-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.45rem;
  border-radius: 999px;
  border: 1.5px solid var(--bn-teal);
  background: var(--bn-teal);
  color: var(--bn-foam);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.25s var(--bn-ease), box-shadow 0.25s, background 0.25s, color 0.25s;
}
.bn-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,0.45) 48%, transparent 70%);
  transform: translateX(-120%);
  animation: btnShine 3.2s ease-in-out infinite;
}
.bn-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 28px rgba(6, 182, 212, 0.35);
  color: var(--bn-foam);
}
.bn-btn:active { transform: scale(0.98); }
.bn-btn--aqua {
  background: var(--bn-aqua);
  border-color: var(--bn-aqua);
}
.bn-btn--aqua:hover { background: var(--bn-aqua-deep); border-color: var(--bn-aqua-deep); }
.bn-btn--ghost {
  background: transparent;
  color: var(--bn-ink);
}
.bn-btn--ghost:hover {
  background: var(--bn-ink);
  color: var(--bn-foam);
  border-color: var(--bn-ink);
}
.bn-btn--light {
  background: var(--bn-foam);
  color: var(--bn-teal);
  border-color: var(--bn-foam);
}
.bn-btn--light:hover { background: var(--bn-mint); border-color: var(--bn-mint); color: var(--bn-ink); }
.bn-btn--nav {
  padding: 0.45rem 1.1rem;
  min-height: 40px;
  font-size: 0.85rem;
  background: var(--bn-aqua);
  border-color: var(--bn-aqua);
}
.bn-btn--bounce { animation: pulse 2.2s ease-in-out infinite; }
.bn-btn .bn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transform: scale(0);
  animation: fadeUp 0.6s ease-out forwards;
  pointer-events: none;
  width: 12px; height: 12px;
}

.bn-burger {
  display: none;
  width: 44px; height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  margin-left: 0.25rem;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.bn-burger i {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--bn-ink);
  border-radius: 99px;
  transition: transform 0.3s var(--bn-ease), opacity 0.3s;
}
.bn-burger[aria-expanded="true"] i:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.bn-burger[aria-expanded="true"] i:nth-child(2) { opacity: 0; }
.bn-burger[aria-expanded="true"] i:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.bn-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(19, 78, 74, 0.45);
}
.bn-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 70;
  width: min(86vw, 340px);
  background: var(--bn-ink);
  color: var(--bn-foam);
  padding: 5rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--bn-ease);
}
.bn-drawer.is-open { transform: translateX(0); }
.bn-drawer a {
  font-family: var(--bn-font-display);
  font-size: 1.35rem;
  color: var(--bn-foam);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.bn-drawer a:hover { color: var(--bn-mint); }
.bn-drawer__brand {
  font-family: var(--bn-font-mark);
  font-weight: 800;
  font-size: 1.6rem;
  margin: 0 0 0.5rem;
  color: var(--bn-mint);
}
.bn-drawer__meta { margin-top: auto; opacity: 0.7; font-size: 0.9rem; }

.bn-main { position: relative; z-index: 1; overflow: clip; }

.bn-wrap {
  max-width: var(--bn-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.bn-wrap--wide {
  max-width: var(--bn-wide);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.bn-section {
  position: relative;
  padding: 5rem 0;
}
.bn-section--ice { background: var(--bn-ice); }
.bn-section--foam { background: var(--bn-foam); }
.bn-section--teal {
  background: linear-gradient(160deg, var(--bn-teal) 0%, #115E59 100%);
  color: var(--bn-foam);
}
.bn-section--teal .bn-eyebrow { color: var(--bn-mint); }
.bn-section--teal .bn-lead { color: rgba(240, 253, 250, 0.82); }
.bn-section--teal .bn-btn--light { color: var(--bn-teal); }

.bn-eyebrow {
  display: inline-block;
  font-family: var(--bn-font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bn-aqua-deep);
  margin-bottom: 0.55rem;
}
.bn-lead {
  font-size: 1.05rem;
  color: rgba(19, 78, 74, 0.78);
  max-width: 42rem;
}
.bn-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.4rem; }
.bn-more { margin-top: 2rem; }
.bn-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bn-teal);
  background: rgba(94, 234, 212, 0.35);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  margin-right: 0.45rem;
}

.bn-wordmark {
  font-family: var(--bn-font-mark);
  font-weight: 800;
  font-size: clamp(3.5rem, 12vw, 9rem);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(15, 118, 110, 0.18);
  letter-spacing: -0.06em;
  margin: 0;
}
.bn-wordmark--overlap {
  position: absolute;
  top: -0.4em;
  left: 1.25rem;
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}

/* Hero */
.bn-hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: grid;
  place-items: end stretch;
  color: var(--bn-foam);
  overflow: hidden;
}
.bn-hero__media {
  position: absolute;
  inset: 0;
  min-height: 100%;
}
.bn-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 22s ease-in-out infinite alternate;
}
.bn-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19,78,74,0.15) 0%, rgba(15,118,110,0.35) 40%, rgba(19,78,74,0.78) 100%);
}
.bn-hero__foam {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -2px;
  height: 18%;
  background:
    radial-gradient(ellipse 40% 80% at 20% 100%, #fff 0%, transparent 70%),
    radial-gradient(ellipse 35% 90% at 50% 100%, var(--bn-ice) 0%, transparent 70%),
    radial-gradient(ellipse 45% 85% at 80% 100%, #fff 0%, transparent 70%);
  pointer-events: none;
}
.bn-hero__copy {
  position: relative;
  z-index: 3;
  max-width: var(--bn-wide);
  margin: 0 auto;
  padding: 0 1.25rem 5.5rem;
  width: 100%;
}
.bn-hero__brand {
  font-family: var(--bn-font-mark);
  font-weight: 800;
  font-size: clamp(3.2rem, 12vw, 8.5rem);
  letter-spacing: -0.06em;
  line-height: 0.9;
  margin: 0 0 0.6rem;
}
.bn-hero__brand .bn-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotate(-6deg);
}
.js .bn-hero.is-ready .bn-hero__brand .bn-char {
  animation: fadeUp 0.85s var(--bn-ease) forwards;
}
.bn-hero h1 {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  max-width: 16ch;
}
.bn-hero__lead {
  max-width: 36rem;
  color: rgba(240, 253, 250, 0.9);
  font-size: 1.05rem;
}
.bn-hero .bn-btn--ghost {
  border-color: rgba(255,255,255,0.7);
  color: var(--bn-foam);
}
.bn-hero .bn-btn--ghost:hover {
  background: var(--bn-foam);
  color: var(--bn-ink);
}

.bn-pagehero {
  position: relative;
  min-height: 72svh;
  min-height: 72vh;
  display: grid;
  place-items: end stretch;
  color: var(--bn-foam);
  overflow: hidden;
}
.bn-pagehero__media {
  position: absolute;
  inset: 0;
  min-height: 100%;
}
.bn-pagehero__media img {
  animation: kenBurns 18s ease-in-out infinite alternate;
}
.bn-pagehero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,118,110,0.2), rgba(19,78,74,0.78));
}
.bn-pagehero__copy {
  position: relative;
  z-index: 2;
  max-width: var(--bn-wide);
  margin: 0 auto;
  padding: 0 1.25rem 3.5rem;
  width: 100%;
}
.bn-pagehero h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
.bn-pagehero p { max-width: 36rem; color: rgba(240,253,250,0.88); }
.bn-pagehero .bn-eyebrow { color: var(--bn-mint); }

/* Marquee ribbon */
.bn-ribbon {
  background: var(--bn-teal);
  color: var(--bn-foam);
  overflow: hidden;
  padding: 0.95rem 0;
}
.bn-ribbon__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.bn-ribbon__item {
  font-family: var(--bn-font-display);
  font-size: 0.95rem;
  white-space: nowrap;
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}
.bn-ribbon__item strong {
  font-family: var(--bn-font-mark);
  font-size: 1.25rem;
  color: var(--bn-mint);
}

/* Split */
.bn-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.bn-split--flip { direction: rtl; }
.bn-split--flip > * { direction: ltr; }
.bn-split__media {
  overflow: hidden;
  border-radius: var(--bn-radius);
  min-height: 420px;
  aspect-ratio: 5 / 4;
  box-shadow: 0 24px 50px rgba(15, 118, 110, 0.16);
}
.bn-split__media--tall { min-height: 520px; aspect-ratio: 4 / 5; }
.bn-split__copy h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
.bn-ticks {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
}
.bn-ticks li {
  padding: 0.4rem 0 0.4rem 1.6rem;
  position: relative;
}
.bn-ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.7rem;
  width: 0.7rem; height: 0.7rem;
  border-radius: 50%;
  background: var(--bn-mint);
  box-shadow: 0 0 0 4px rgba(94,234,212,0.35);
}

/* Film gallery */
.bn-film {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1.5rem 1.25rem 2rem;
  -webkit-overflow-scrolling: touch;
}
.bn-film figure {
  flex: 0 0 min(78vw, 320px);
  margin: 0;
  scroll-snap-align: start;
  border-radius: var(--bn-radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 220px;
}
.bn-film figcaption {
  position: absolute;
  left: 0.9rem; bottom: 0.8rem;
  color: #fff;
  font-family: var(--bn-font-display);
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

/* Cards / grids */
.bn-grid {
  display: grid;
  gap: 1.25rem;
}
.bn-grid--3 { grid-template-columns: repeat(3, 1fr); }
.bn-grid--4 { grid-template-columns: repeat(4, 1fr); }
.bn-card {
  background: var(--bn-foam);
  border-radius: var(--bn-radius);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 118, 110, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.35s var(--bn-ease), box-shadow 0.35s;
}
.bn-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(6, 182, 212, 0.16);
}
.bn-card--plain { background: var(--bn-ice); box-shadow: none; border: 1px solid var(--bn-line); }
.bn-card__link { color: inherit; display: flex; flex-direction: column; height: 100%; }
.bn-card__pic {
  aspect-ratio: 16 / 10;
  min-height: 180px;
  overflow: hidden;
}
.bn-card__pic--tall { aspect-ratio: 4 / 3; min-height: 200px; }
.bn-card__pic img { transition: transform 0.7s var(--bn-ease); }
.bn-card:hover .bn-card__pic img { transform: scale(1.07); }
.bn-card__body { padding: 1.15rem 1.2rem 1.35rem; flex: 1; }
.bn-card__body h3 { font-size: 1.15rem; }
.bn-card__body p { color: rgba(19,78,74,0.75); font-size: 0.92rem; margin: 0; }
.bn-card__meta {
  display: inline-block;
  font-family: var(--bn-font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--bn-coral);
  margin-bottom: 0.35rem;
}

/* Process */
.bn-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.bn-steps article {
  background: var(--bn-foam);
  border-radius: var(--bn-radius);
  overflow: hidden;
  padding-bottom: 1.2rem;
  box-shadow: 0 12px 32px rgba(15, 118, 110, 0.08);
}
.bn-steps__pic {
  aspect-ratio: 4 / 3;
  min-height: 150px;
  overflow: hidden;
}
.bn-steps__num {
  display: block;
  font-family: var(--bn-font-mark);
  font-size: 1.4rem;
  color: var(--bn-aqua);
  padding: 0.85rem 1.1rem 0;
}
.bn-steps h3 { padding: 0 1.1rem; font-size: 1.05rem; }
.bn-steps p { padding: 0 1.1rem; color: rgba(19,78,74,0.72); font-size: 0.9rem; margin: 0; }

/* Why */
.bn-why {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.bn-why article {
  background: var(--bn-foam);
  border-radius: var(--bn-radius);
  overflow: hidden;
  padding-bottom: 1.15rem;
}
.bn-why__pic {
  aspect-ratio: 5 / 3;
  min-height: 140px;
  overflow: hidden;
}
.bn-why__num {
  display: block;
  font-family: var(--bn-font-mark);
  color: var(--bn-coral);
  padding: 0.8rem 1.1rem 0;
  font-size: 1.15rem;
}
.bn-why h3 { padding: 0 1.1rem; font-size: 1.05rem; }
.bn-why p { padding: 0 1.1rem; margin: 0; font-size: 0.9rem; color: rgba(19,78,74,0.72); }

/* Before / after */
.bn-ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.bn-ba figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--bn-radius);
  aspect-ratio: 4 / 3;
  min-height: 280px;
}
.bn-ba figcaption {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(255,255,255,0.9);
  color: var(--bn-ink);
  font-family: var(--bn-font-display);
  font-weight: 800;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
}

/* Voices */
.bn-voices {
  display: grid;
  gap: 1.25rem;
}
.bn-voices blockquote {
  margin: 0;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1.1rem;
  align-items: start;
  background: var(--bn-foam);
  border-radius: var(--bn-radius);
  padding: 1.2rem;
  box-shadow: 0 10px 28px rgba(15, 118, 110, 0.07);
}
.bn-voices__pic {
  width: 88px;
  height: 88px;
  min-height: 88px;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1;
}
.bn-voices p { font-size: 1rem; }
.bn-voices cite {
  display: block;
  font-style: normal;
  font-family: var(--bn-font-display);
  font-weight: 700;
}
.bn-voices small { color: rgba(19,78,74,0.6); }

/* Pricing + areas */
.bn-areas {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}
.bn-areas__list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.bn-areas__list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--bn-line);
}
.bn-areas__list strong { font-family: var(--bn-font-display); }
.bn-areas__list span { color: rgba(19,78,74,0.7); }
.bn-areas__list--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.75rem;
}
.bn-areas__list--grid li {
  background: var(--bn-foam);
  border: 1px solid var(--bn-line);
  border-radius: var(--bn-radius-sm);
  padding: 1.15rem 1.2rem;
  flex-direction: column;
  align-items: flex-start;
}

.bn-price {
  display: grid;
  gap: 0.85rem;
}
.bn-price--row { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.bn-price article {
  background: var(--bn-foam);
  border: 1px solid var(--bn-line);
  border-radius: var(--bn-radius);
  padding: 1.25rem 1.3rem;
}
.bn-price article.is-hot {
  background: var(--bn-teal);
  color: var(--bn-foam);
  border-color: var(--bn-teal);
  transform: scale(1.03);
}
.bn-price .price {
  font-family: var(--bn-font-mark);
  font-size: 1.85rem;
  margin: 0.2rem 0 0.4rem;
  color: var(--bn-aqua-deep);
}
.bn-price article.is-hot .price { color: var(--bn-mint); }
.bn-price ul { margin: 0.6rem 0 0; padding-left: 1.1rem; font-size: 0.9rem; }
.bn-price article.is-hot ul { color: rgba(240,253,250,0.88); }

/* Team */
.bn-team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.bn-team article { display: grid; gap: 0.55rem; }
.bn-team__pic {
  aspect-ratio: 3 / 4;
  min-height: 280px;
  overflow: hidden;
  border-radius: var(--bn-radius);
}
.bn-team__pic img { transition: transform 0.7s var(--bn-ease); }
.bn-team article:hover .bn-team__pic img { transform: scale(1.06); }
.bn-team__role {
  color: var(--bn-aqua-deep);
  font-weight: 700;
  font-size: 0.88rem;
  margin: 0;
}
.bn-team p { color: rgba(19,78,74,0.72); font-size: 0.92rem; margin: 0; }

/* Blog notes */
.bn-notes {
  display: grid;
  gap: 1.25rem;
}
.bn-notes--grid { grid-template-columns: repeat(3, 1fr); }
.bn-notes article {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.1rem;
  background: var(--bn-foam);
  border-radius: var(--bn-radius);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(15, 118, 110, 0.07);
}
.bn-notes--grid article {
  grid-template-columns: 1fr;
}
.bn-notes__pic {
  aspect-ratio: 4 / 3;
  min-height: 140px;
  overflow: hidden;
}
.bn-notes article > div:last-child { padding: 1rem 1.1rem 1.2rem; }
.bn-notes time { font-size: 0.8rem; color: rgba(19,78,74,0.55); }
.bn-notes h3 { font-size: 1.1rem; margin-top: 0.35rem; }
.bn-notes p { color: rgba(19,78,74,0.72); font-size: 0.92rem; margin: 0; }

.bn-featured {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}
.bn-featured__pic {
  aspect-ratio: 4 / 3;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--bn-radius);
}
.bn-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.bn-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  background: var(--bn-foam);
  border: 1px solid var(--bn-line);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  min-height: 44px;
}
.bn-chip:hover { border-color: var(--bn-aqua); color: var(--bn-ink); background: var(--bn-ice); }
.bn-chip span { color: var(--bn-aqua-deep); font-family: var(--bn-font-display); font-weight: 700; }

.bn-howto {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.bn-howto article {
  background: var(--bn-foam);
  border-radius: var(--bn-radius);
  overflow: hidden;
  padding-bottom: 1.15rem;
}
.bn-howto__pic {
  aspect-ratio: 4 / 3;
  min-height: 180px;
  overflow: hidden;
}

.bn-popular { display: grid; gap: 1rem; }
.bn-popular article {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  background: var(--bn-foam);
  border-radius: var(--bn-radius-sm);
  overflow: hidden;
}
.bn-popular__pic {
  aspect-ratio: 4 / 3;
  min-height: 100px;
  overflow: hidden;
}

/* FAQ */
.bn-faq details {
  border-bottom: 1px solid var(--bn-line);
  padding: 0.35rem 0;
}
.bn-faq summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--bn-font-display);
  font-weight: 700;
  font-size: 1.05rem;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.bn-faq summary::-webkit-details-marker { display: none; }
.bn-faq summary::after {
  content: "+";
  color: var(--bn-aqua);
  font-size: 1.4rem;
  font-weight: 400;
}
.bn-faq details[open] summary::after { content: "−"; }
.bn-faq details p {
  color: rgba(19,78,74,0.72);
  padding-bottom: 1rem;
}

/* Quote / timeline / stats / values */
.bn-quoteband { text-align: center; padding: 4.5rem 0; }
.bn-pullquote {
  margin: 0;
  font-family: var(--bn-font-display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.35;
}
.bn-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 3px solid var(--bn-mint);
}
.bn-timeline li {
  position: relative;
  padding: 0 0 1.6rem 1.5rem;
}
.bn-timeline li::before {
  content: "";
  position: absolute;
  left: -7px; top: 0.45rem;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--bn-aqua);
  box-shadow: 0 0 0 4px var(--bn-ice);
}
.bn-timeline strong {
  font-family: var(--bn-font-mark);
  font-size: 1.25rem;
  color: var(--bn-teal);
}

.bn-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.bn-stats strong {
  display: block;
  font-family: var(--bn-font-mark);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--bn-mint);
}
.bn-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.bn-values article {
  background: var(--bn-ice);
  border-radius: var(--bn-radius);
  padding: 1.5rem 1.2rem;
  text-align: center;
}
.bn-values h3 {
  font-family: var(--bn-font-mark);
  font-size: 1.8rem;
  color: var(--bn-aqua-deep);
}

.bn-reveal-box {
  overflow: hidden;
  border-radius: var(--bn-radius);
  aspect-ratio: 21 / 8;
  min-height: 180px;
}

/* Contact */
.bn-contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.bn-address { margin-top: 1.25rem; }
.bn-address a { color: var(--bn-aqua-deep); font-weight: 700; }
.bn-form {
  display: grid;
  gap: 0.9rem;
  background: var(--bn-foam);
  border-radius: var(--bn-radius);
  padding: 1.5rem;
  box-shadow: 0 18px 40px rgba(15, 118, 110, 0.1);
}
.bn-form label { display: grid; gap: 0.35rem; }
.bn-form label span { font-size: 0.85rem; font-weight: 700; }
.bn-form input,
.bn-form textarea {
  width: 100%;
  border: 1.5px solid var(--bn-line-strong);
  background: var(--bn-ice);
  border-radius: 0.9rem;
  padding: 0.75rem 0.9rem;
  color: var(--bn-ink);
  min-height: 48px;
}
.bn-form textarea { min-height: 140px; resize: vertical; }
.bn-form input:focus,
.bn-form textarea:focus {
  outline: none;
  border-color: var(--bn-aqua);
  background: var(--bn-foam);
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.18);
}
.bn-form em { color: var(--bn-coral); font-size: 0.82rem; font-style: normal; }
.bn-alert {
  padding: 0.85rem 1rem;
  border-radius: var(--bn-radius-sm);
  margin-bottom: 0.8rem;
}
.bn-alert--ok { background: rgba(94,234,212,0.35); color: var(--bn-teal); }
.bn-alert--err { background: rgba(251,113,133,0.18); color: #be123c; }
.bn-map {
  margin-top: 1.25rem;
  border-radius: var(--bn-radius);
  overflow: hidden;
  min-height: 320px;
  aspect-ratio: 16 / 8;
  border: 1px solid var(--bn-line);
}
.bn-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

.bn-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.bn-channels article {
  background: var(--bn-foam);
  border-radius: var(--bn-radius);
  overflow: hidden;
  padding-bottom: 1.2rem;
  box-shadow: 0 12px 30px rgba(15, 118, 110, 0.08);
}
.bn-channels__pic {
  aspect-ratio: 16 / 9;
  min-height: 120px;
  overflow: hidden;
}
.bn-channels h3, .bn-channels a, .bn-channels p { padding: 0 1.15rem; }
.bn-channels h3 { margin-top: 1rem; }
.bn-channels a { color: var(--bn-aqua-deep); font-family: var(--bn-font-display); font-weight: 700; display: block; min-height: 32px; }

.bn-social {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.bn-social a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 1.3rem;
  border-radius: 999px;
  background: var(--bn-mint);
  color: var(--bn-ink);
  font-weight: 700;
}
.bn-social a:hover { background: var(--bn-foam); color: var(--bn-teal); }

/* Finale */
.bn-finale {
  position: relative;
  min-height: 70svh;
  min-height: 70vh;
  display: grid;
  place-items: center;
  color: var(--bn-foam);
  overflow: hidden;
  text-align: center;
}
.bn-finale__bg {
  position: absolute;
  inset: 0;
  min-height: 100%;
}
.bn-finale__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,118,110,0.35), rgba(19,78,74,0.78));
}
.bn-finale__in {
  position: relative;
  z-index: 2;
  padding: 4rem 1.25rem;
  max-width: 40rem;
}
.bn-finale h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
.bn-finale p { color: rgba(240,253,250,0.88); }

/* Footer */
.bn-foot {
  position: relative;
  background: var(--bn-ink);
  color: rgba(240,253,250,0.85);
  padding: 4.5rem 1.25rem 1.5rem;
  z-index: 1;
}
.bn-foot__wave {
  position: absolute;
  top: -40px; left: 0; right: 0;
  height: 48px;
  background:
    radial-gradient(ellipse 30% 100% at 15% 100%, var(--bn-ink) 50%, transparent 51%),
    radial-gradient(ellipse 28% 100% at 45% 100%, var(--bn-ink) 50%, transparent 51%),
    radial-gradient(ellipse 32% 100% at 78% 100%, var(--bn-ink) 50%, transparent 51%),
    linear-gradient(var(--bn-ink), var(--bn-ink));
}
.bn-foot__grid {
  max-width: var(--bn-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 0.8fr;
  gap: 2rem;
}
.bn-foot__brand {
  font-family: var(--bn-font-mark);
  font-size: 2rem;
  font-weight: 800;
  color: var(--bn-mint);
  margin: 0 0 0.5rem;
}
.bn-foot__tag { color: var(--bn-mint); font-weight: 700; }
.bn-foot h3 {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bn-mint);
}
.bn-foot ul { list-style: none; padding: 0; margin: 0; }
.bn-foot li { margin: 0.35rem 0; }
.bn-foot a:hover { color: var(--bn-mint); }
.bn-foot__bar {
  max-width: var(--bn-wide);
  margin: 2.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(94,234,212,0.2);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

/* Reveal / fade (required) */
.js [data-fade] {
  opacity: 0;
  transform: translateY(24px);
}
.js [data-fade].is-in {
  opacity: 1;
  transform: none;
  transition: 0.7s cubic-bezier(.22,1,.36,1);
}
.js [data-fade] { transition-delay: calc(var(--d, 0) * 80ms); }

.js [data-reveal] {
  clip-path: inset(12% 12% 12% 12%);
  transform: scale(1.06);
  transition: clip-path 1s var(--bn-ease), transform 1s var(--bn-ease);
}
.js [data-reveal].is-in {
  clip-path: inset(0 0 0 0);
  transform: none;
}
.js [data-reveal="left"] { clip-path: inset(0 100% 0 0); transform: none; }
.js [data-reveal="left"].is-in { clip-path: inset(0 0 0 0); }
.js [data-reveal="right"] { clip-path: inset(0 0 0 100%); transform: none; }
.js [data-reveal="right"].is-in { clip-path: inset(0 0 0 0); }

/* Keyframes */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.12) translate(-2%, 2%); }
}
@keyframes bubbleFloat {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  12% { opacity: 0.85; }
  100% { transform: translateY(-110vh) translateX(30px) scale(1.15); opacity: 0; }
}
@keyframes btnShine {
  0% { transform: translateX(-120%); }
  40%, 100% { transform: translateX(220%); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.045); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Mobile 768 */
@media (max-width: 768px) {
  .bn-nav__links { display: none; }
  .bn-nav .bn-btn--nav { display: none; }
  .bn-burger { display: flex; margin-left: auto; }
  .bn-hero, .bn-pagehero { min-height: 100svh; }
  .bn-hero__copy { padding-bottom: 4.25rem; }
  .bn-section { padding: 3.25rem 0; }
  .bn-split,
  .bn-split--flip,
  .bn-areas,
  .bn-contact,
  .bn-featured {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .bn-split__media,
  .bn-split__media--tall,
  .bn-featured__pic {
    min-height: 260px;
    aspect-ratio: 4 / 3;
  }
  .bn-grid--3,
  .bn-grid--4,
  .bn-steps,
  .bn-why,
  .bn-team,
  .bn-notes--grid,
  .bn-howto,
  .bn-stats,
  .bn-values,
  .bn-price--row,
  .bn-channels,
  .bn-ba,
  .bn-foot__grid {
    grid-template-columns: 1fr 1fr;
  }
  .bn-notes article,
  .bn-popular article,
  .bn-voices blockquote {
    grid-template-columns: 1fr;
  }
  .bn-notes__pic { min-height: 180px; }
  .bn-voices__pic { width: 72px; height: 72px; min-height: 72px; }
  .bn-actions .bn-btn,
  .bn-more .bn-btn,
  .bn-form .bn-btn,
  .bn-finale .bn-btn {
    width: 100%;
    min-height: 48px;
  }
  .bn-film figure {
    flex-basis: 78vw;
    min-height: 200px;
  }
  .bn-price article.is-hot { transform: none; }
  .bn-wordmark--overlap { font-size: 3.2rem; top: -0.2em; }
  .bn-map, .bn-map iframe { min-height: 240px; }
  .bn-finale { min-height: 60svh; }
}

/* Mobile 480 */
@media (max-width: 480px) {
  body.bn-body { font-size: 15px; }
  .bn-grid--3,
  .bn-grid--4,
  .bn-steps,
  .bn-why,
  .bn-team,
  .bn-notes--grid,
  .bn-howto,
  .bn-stats,
  .bn-values,
  .bn-price--row,
  .bn-channels,
  .bn-ba,
  .bn-foot__grid,
  .bn-areas__list--grid {
    grid-template-columns: 1fr;
  }
  .bn-hero h1 { max-width: none; }
  .bn-btn { width: 100%; min-height: 48px; }
  .bn-nav__inner { padding: 0 0.9rem; }
  .bn-film { padding-left: 0.9rem; padding-right: 0.9rem; }
  .bn-film figure { flex-basis: 85vw; min-height: 190px; }
  .bn-split__media { min-height: 220px; }
  .bn-team__pic { min-height: 320px; }
  .bn-foot__bar { flex-direction: column; }
  .bn-hero__brand { font-size: clamp(2.6rem, 18vw, 4.2rem); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .js [data-fade],
  .js [data-reveal],
  .js [data-reveal="left"],
  .js [data-reveal="right"] {
    opacity: 1;
    transform: none;
    clip-path: none;
  }
  .bn-hero__media img,
  .bn-pagehero__media img { animation: none; }
  .bn-ribbon__track { animation: none; }
}
