/* aikencare — Linen / Ocean / Mint Glass */

:root {
  --bn-linen: #F7F4EF;
  --bn-ink: #0B1F2A;
  --bn-mint: #7BC4B2;
  --bn-sky: #C9E4F0;
  --bn-coral: #E07A6A;
  --bn-foam: #FFFFFF;
  --bn-muted: rgba(11, 31, 42, 0.68);
  --bn-line: rgba(11, 31, 42, 0.1);
  --bn-line-strong: rgba(11, 31, 42, 0.18);
  --bn-font-display: "Fraunces", "Zen Maru Gothic", serif;
  --bn-font-body: "DM Sans", "Zen Maru Gothic", sans-serif;
  --bn-font-jp: "Zen Maru Gothic", "DM Sans", sans-serif;
  --bn-font-mark: "Fraunces", "Zen Maru Gothic", serif;
  --bn-nav-h: 68px;
  --bn-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --bn-max: 1120px;
  --bn-wide: 1320px;
  --bn-radius: 0.65rem;
  --bn-radius-sm: 0.45rem;

  /* legacy aliases remapped so old section modifiers still work */
  --bn-ice: var(--bn-linen);
  --bn-aqua: var(--bn-mint);
  --bn-aqua-deep: #4FA894;
  --bn-teal: var(--bn-ink);
  --bn-mist: rgba(11, 31, 42, 0.06);
}

*, *::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-jp);
  font-size: 16px;
  line-height: 1.75;
  background:
    linear-gradient(180deg, rgba(201, 228, 240, 0.35) 0%, transparent 28%),
    var(--bn-linen);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.bn-hero__media,
.bn-pagehero__media,
.bn-split__media,
.bn-intro__media,
.bn-card__pic,
.bn-bento__pic,
.bn-film figure,
.bn-filmstrip__pic,
.bn-mosaic__pic,
.bn-steps__pic,
.bn-team__pic,
.bn-voices__pic,
.bn-notes__pic,
.bn-blogrow__pic,
.bn-featured__pic,
.bn-ba figure,
.bn-season__pic,
.bn-areas__map,
.bn-finale__bg,
.bn-reveal-box,
.bn-why__pic,
.bn-howto__pic,
.bn-channels__pic,
.bn-popular__pic {
  background: linear-gradient(145deg, rgba(11, 31, 42, 0.12), rgba(123, 196, 178, 0.18));
  overflow: hidden;
}

.bn-hero__media img,
.bn-pagehero__media img,
.bn-split__media img,
.bn-intro__media img,
.bn-card__pic img,
.bn-bento__pic img,
.bn-film img,
.bn-filmstrip__pic img,
.bn-mosaic__pic img,
.bn-steps__pic img,
.bn-team__pic img,
.bn-voices__pic img,
.bn-notes__pic img,
.bn-blogrow__pic img,
.bn-featured__pic img,
.bn-ba img,
.bn-season__pic img,
.bn-areas__map img,
.bn-finale__bg img,
.bn-reveal-box img,
.bn-why__pic img,
.bn-howto__pic img,
.bn-channels__pic img,
.bn-popular__pic img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}

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: 600;
  line-height: 1.25;
  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-linen);
  border-radius: var(--bn-radius-sm);
}
.bn-skip:focus { left: 1rem; top: 1rem; }

.bn-bubbles { display: none; }

/* —— Nav —— */
.bn-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--bn-nav-h);
  background: rgba(247, 244, 239, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  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(247, 244, 239, 0.94);
  border-bottom-color: var(--bn-line);
  box-shadow: 0 10px 36px rgba(11, 31, 42, 0.06);
}
.bn-nav__inner {
  max-width: var(--bn-wide);
  margin: 0 auto;
  height: 100%;
  padding: 0 1.35rem;
  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-aqua-deep); }
.bn-nav__mark {
  color: var(--bn-mint);
  display: grid;
  place-items: center;
}
.bn-nav__name {
  font-family: var(--bn-font-mark);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}
.bn-nav__links {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
}
.bn-nav__links a {
  font-family: var(--bn-font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--bn-muted);
  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-mint);
  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: 50px;
  padding: 0.75rem 1.55rem;
  border-radius: var(--bn-radius);
  border: 1.5px solid var(--bn-ink);
  background: var(--bn-ink);
  color: var(--bn-linen);
  font-family: var(--bn-font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.22s var(--bn-ease), box-shadow 0.22s, background 0.22s, color 0.22s, border-color 0.22s;
}
.bn-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 28px rgba(11, 31, 42, 0.18);
  color: var(--bn-linen);
}
.bn-btn:active { transform: scale(0.96); }
.bn-btn--mint,
.bn-btn--aqua {
  background: var(--bn-mint);
  border-color: var(--bn-mint);
  color: var(--bn-ink);
}
.bn-btn--mint:hover,
.bn-btn--aqua:hover {
  background: #6ab5a2;
  border-color: #6ab5a2;
  color: var(--bn-ink);
  box-shadow: 0 12px 28px rgba(123, 196, 178, 0.4);
}
.bn-btn--coral {
  background: var(--bn-coral);
  border-color: var(--bn-coral);
  color: #fff;
}
.bn-btn--coral:hover {
  background: #d46b5c;
  border-color: #d46b5c;
  color: #fff;
  box-shadow: 0 12px 28px rgba(224, 122, 106, 0.35);
}
.bn-btn--ghost {
  background: transparent;
  color: var(--bn-linen);
  border-color: rgba(247, 244, 239, 0.65);
}
.bn-btn--ghost:hover {
  background: var(--bn-linen);
  color: var(--bn-ink);
  border-color: var(--bn-linen);
}
.bn-btn--ghost-ink {
  background: transparent;
  color: var(--bn-ink);
  border-color: var(--bn-ink);
}
.bn-btn--ghost-ink:hover {
  background: var(--bn-ink);
  color: var(--bn-linen);
}
.bn-btn--light {
  background: var(--bn-linen);
  color: var(--bn-ink);
  border-color: var(--bn-linen);
}
.bn-btn--light:hover {
  background: var(--bn-mint);
  border-color: var(--bn-mint);
  color: var(--bn-ink);
}
.bn-btn--nav {
  padding: 0.45rem 1.15rem;
  min-height: 42px;
  font-size: 0.85rem;
  background: var(--bn-ink);
  border-color: var(--bn-ink);
  color: var(--bn-linen);
}
.bn-btn--bounce { animation: btnPulse 2.4s ease-in-out infinite; }
.bn-btn .bn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transform: scale(0);
  animation: rippleOut 0.6s ease-out forwards;
  pointer-events: none;
  width: 14px; height: 14px;
  margin: -7px 0 0 -7px;
}

.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;
  margin: 0 auto;
  background: var(--bn-ink);
  border-radius: 99px;
  transform-origin: center;
  transition: transform 0.35s var(--bn-ease), opacity 0.25s, width 0.35s var(--bn-ease);
}
.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; width: 0; transform: scaleX(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(11, 31, 42, 0.5);
}
.bn-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 70;
  width: min(86vw, 340px);
  max-width: 100%;
  background:
    linear-gradient(165deg, #132a36 0%, var(--bn-ink) 55%),
    var(--bn-ink);
  color: var(--bn-linen);
  padding: 5rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transform: translateX(105%);
  transition: transform 0.48s var(--bn-ease);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  box-shadow: -18px 0 48px rgba(11, 31, 42, 0.35);
}
.bn-drawer.is-open { transform: translateX(0); }
.bn-drawer a {
  font-family: var(--bn-font-display);
  font-size: 1.35rem;
  color: var(--bn-linen);
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(201, 228, 240, 0.12);
}
.bn-drawer a:hover { color: var(--bn-mint); }
.bn-drawer__brand {
  font-family: var(--bn-font-mark);
  font-weight: 700;
  font-size: 1.75rem;
  margin: 0 0 0.85rem;
  color: var(--bn-mint);
  letter-spacing: -0.03em;
}
.bn-drawer__cta {
  margin-top: 0.85rem;
  justify-content: center;
  border-radius: var(--bn-radius);
  border-bottom: 0 !important;
  background: var(--bn-mint);
  color: var(--bn-ink) !important;
  padding: 0 1.1rem;
  min-height: 52px;
  font-weight: 700;
}
.bn-drawer__meta { margin-top: auto; padding-top: 1.25rem; 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.35rem;
}
.bn-wrap--wide {
  max-width: var(--bn-wide);
  margin: 0 auto;
  padding: 0 1.35rem;
}

.bn-section {
  position: relative;
  padding: 4.75rem 0;
}
.bn-section__head { margin-bottom: 2rem; max-width: 42rem; }
.bn-section__head h2 { font-size: clamp(1.85rem, 3.2vw, 2.65rem); }
.bn-section__head--light .bn-lead { color: rgba(247, 244, 239, 0.78); }
.bn-section__head--light .bn-eyebrow { color: var(--bn-mint); }
.bn-section__head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: none;
}
.bn-section--intro { padding-top: 0; padding-bottom: 4.5rem; }
.bn-section--ice,
.bn-section--linen { background: var(--bn-linen); }
.bn-section--foam { background: var(--bn-foam); }
.bn-section--sky {
  background:
    linear-gradient(180deg, rgba(201, 228, 240, 0.55) 0%, rgba(247, 244, 239, 0.9) 100%);
}
.bn-section--season {
  background:
    radial-gradient(700px 320px at 100% 0%, rgba(123, 196, 178, 0.22), transparent 60%),
    var(--bn-linen);
}
.bn-section--teal,
.bn-section--ink {
  background: var(--bn-ink);
  color: var(--bn-linen);
}
.bn-section--teal .bn-eyebrow,
.bn-section--ink .bn-eyebrow { color: var(--bn-mint); }
.bn-section--teal .bn-lead,
.bn-section--ink .bn-lead { color: rgba(247, 244, 239, 0.78); }
.bn-section--teal .bn-btn--light { color: var(--bn-ink); }

.bn-eyebrow {
  display: inline-block;
  font-family: var(--bn-font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bn-aqua-deep);
  margin-bottom: 0.55rem;
}
.bn-lead {
  font-size: 1.05rem;
  color: var(--bn-muted);
  max-width: 42rem;
}
.bn-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.4rem; }
.bn-actions--hero { margin-top: 1.75rem; }
.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-ink);
  background: var(--bn-sky);
  padding: 0.2rem 0.55rem;
  border-radius: var(--bn-radius-sm);
  margin-right: 0.45rem;
}

.bn-wordmark {
  font-family: var(--bn-font-mark);
  font-weight: 700;
  font-size: clamp(3.5rem, 12vw, 9rem);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(11, 31, 42, 0.14);
  letter-spacing: -0.05em;
  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: min(92svh, 900px);
  display: grid;
  place-items: end stretch;
  color: var(--bn-linen);
  overflow: hidden;
  background: var(--bn-ink);
}
.bn-hero__media {
  position: absolute;
  inset: 0;
  min-height: 100%;
}
.bn-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center 40%;
  animation: kenBurns 22s ease-in-out infinite alternate;
  will-change: transform;
}
.bn-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(11, 31, 42, 0.72) 0%, rgba(11, 31, 42, 0.28) 45%, transparent 70%),
    linear-gradient(180deg, rgba(11, 31, 42, 0.15) 0%, rgba(11, 31, 42, 0.25) 40%, rgba(11, 31, 42, 0.88) 100%);
}
.bn-hero__foam,
.bn-sparkles { display: none; }
.bn-hero__copy {
  position: relative;
  z-index: 3;
  max-width: var(--bn-wide);
  margin: 0 auto;
  padding: 0 1.35rem 4.5rem;
  width: 100%;
}
.bn-hero__brand {
  font-family: var(--bn-font-mark);
  font-weight: 700;
  font-size: clamp(3.6rem, 14vw, 9.5rem);
  letter-spacing: -0.05em;
  line-height: 0.86;
  margin: 0 0 0.55rem;
  text-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}
.bn-hero__brand .bn-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(52px);
}
.js .bn-hero.is-ready .bn-hero__brand .bn-char {
  animation: textRise 0.95s var(--bn-ease) forwards;
}
.bn-hero h1 {
  font-family: var(--bn-font-jp);
  font-weight: 700;
  font-size: clamp(1.55rem, 3.4vw, 2.4rem);
  max-width: 18ch;
  margin-bottom: 0.55rem;
  letter-spacing: 0.02em;
}
.bn-hero__lead {
  max-width: 34rem;
  color: rgba(247, 244, 239, 0.9);
  font-size: 1.05rem;
  margin-bottom: 0;
}
.bn-hero .bn-btn--ghost {
  border-color: rgba(247, 244, 239, 0.7);
  color: var(--bn-linen);
}

.bn-pagehero {
  position: relative;
  min-height: 68svh;
  display: grid;
  place-items: end stretch;
  color: var(--bn-linen);
  overflow: hidden;
  background: var(--bn-ink);
}
.bn-pagehero__media {
  position: absolute;
  inset: 0;
  min-height: 100%;
}
.bn-pagehero__media img {
  animation: kenBurns 20s ease-in-out infinite alternate;
}
.bn-pagehero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 31, 42, 0.2), rgba(11, 31, 42, 0.82));
}
.bn-pagehero__copy {
  position: relative;
  z-index: 2;
  max-width: var(--bn-wide);
  margin: 0 auto;
  padding: 0 1.35rem 3.5rem;
  width: 100%;
}
.bn-pagehero h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
.bn-pagehero p { max-width: 36rem; color: rgba(247, 244, 239, 0.88); }
.bn-pagehero .bn-eyebrow { color: var(--bn-mint); }

/* —— Proof ribbon —— */
.bn-ribbon {
  background: var(--bn-ink);
  color: var(--bn-linen);
  overflow: hidden;
  padding: 1.05rem 0;
  border-top: 1px solid rgba(123, 196, 178, 0.2);
  border-bottom: 1px solid rgba(123, 196, 178, 0.2);
}
.bn-ribbon__track {
  display: flex;
  gap: 3.25rem;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.bn-ribbon__item {
  font-family: var(--bn-font-body);
  font-size: 0.95rem;
  white-space: nowrap;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.bn-ribbon__item strong {
  font-family: var(--bn-font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--bn-mint);
}

/* —— Asymmetric intro —— */
.bn-intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  align-items: stretch;
  min-height: min(70vh, 640px);
}
.bn-intro__media {
  min-height: 480px;
  height: 100%;
  border-radius: 0;
}
.bn-intro__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem clamp(1.5rem, 4vw, 3.5rem);
  background:
    linear-gradient(135deg, rgba(201, 228, 240, 0.45), transparent 60%),
    var(--bn-linen);
}
.bn-intro__copy h2 { font-size: clamp(1.85rem, 3vw, 2.65rem); }

/* Legacy split (inner pages) */
.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;
}
.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: 1.25rem 0 0.25rem;
}
.bn-ticks li {
  padding: 0.45rem 0 0.45rem 1.5rem;
  position: relative;
  font-weight: 500;
}
.bn-ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.85rem;
  width: 0.55rem; height: 0.55rem;
  background: var(--bn-mint);
}

/* —— Service bento —— */
.bn-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 1rem;
}
.bn-bento__item {
  grid-column: span 2;
  background: var(--bn-foam);
  border: 1px solid var(--bn-line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.35s var(--bn-ease), border-color 0.35s;
}
.bn-bento__item:hover {
  transform: translateY(-4px);
  border-color: var(--bn-mint);
}
.bn-bento__item--lg { grid-column: span 4; grid-row: span 2; }
.bn-bento__item--mid { grid-column: span 2; grid-row: span 2; }
.bn-bento__pic {
  flex: 1;
  min-height: 160px;
  aspect-ratio: 16 / 10;
}
.bn-bento__item--lg .bn-bento__pic,
.bn-bento__item--mid .bn-bento__pic {
  min-height: 280px;
  aspect-ratio: auto;
  flex: 1.4;
}
.bn-bento__pic img { transition: transform 1s var(--bn-ease); }
.bn-bento__item:hover .bn-bento__pic img { transform: scale(1.06); }
.bn-bento__body { padding: 1.15rem 1.25rem 1.35rem; }
.bn-bento__body h3 { font-size: 1.15rem; margin-bottom: 0.35rem; }
.bn-bento__body p { color: var(--bn-muted); font-size: 0.92rem; margin: 0; }
.bn-bento__meta {
  display: inline-block;
  font-family: var(--bn-font-body);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--bn-coral);
  margin-bottom: 0.3rem;
  letter-spacing: 0.02em;
}

/* Film / mosaic (shared pages) */
.bn-film {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 1.35rem 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: 600;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

.bn-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 0.25rem;
}
@media (max-width: 1100px) {
  .bn-mosaic { grid-template-columns: repeat(3, 1fr); }
}
.bn-mosaic__item {
  margin: 0;
  position: relative;
  border-radius: var(--bn-radius);
  overflow: hidden;
}
.bn-mosaic__item--wide { grid-column: span 2; }
.bn-mosaic__pic {
  aspect-ratio: 4 / 3;
  min-height: 220px;
  overflow: hidden;
}
.bn-mosaic__item--wide .bn-mosaic__pic {
  aspect-ratio: 16 / 9;
  min-height: 280px;
}
.bn-mosaic__pic img { transition: transform 0.9s var(--bn-ease); }
.bn-mosaic__item:hover .bn-mosaic__pic img { transform: scale(1.08); }
.bn-mosaic figcaption {
  position: absolute;
  left: 1rem; bottom: 0.9rem;
  color: #fff;
  font-family: var(--bn-font-display);
  font-weight: 600;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  z-index: 1;
}

/* —— Before / After slider —— */
.bn-ba-band { padding-bottom: 5rem; }
.bn-ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.bn-ba--slider {
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  border: 1px solid rgba(201, 228, 240, 0.25);
  overflow: hidden;
}
.bn-ba__divider {
  width: 3px;
  background: var(--bn-mint);
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bn-ba__divider span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bn-mint);
  border: 3px solid var(--bn-linen);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.bn-ba figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--bn-radius);
  aspect-ratio: 4 / 3;
  min-height: 300px;
}
.bn-ba--slider figure {
  border-radius: 0;
  min-height: 380px;
  aspect-ratio: 5 / 4;
}
.bn-ba figcaption {
  position: absolute;
  top: 1.1rem; left: 1.1rem;
  background: rgba(11, 31, 42, 0.85);
  color: var(--bn-linen);
  font-family: var(--bn-font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: var(--bn-radius-sm);
}

/* —— Process filmstrip —— */
.bn-filmstrip {
  display: flex;
  gap: 1.15rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.25rem 1.35rem 1.5rem;
  max-width: var(--bn-wide);
  margin: 0 auto;
  -webkit-overflow-scrolling: touch;
}
.bn-filmstrip__item {
  flex: 0 0 min(72vw, 300px);
  scroll-snap-align: start;
  background: var(--bn-foam);
  border: 1px solid var(--bn-line);
  overflow: hidden;
  padding-bottom: 1.25rem;
}
.bn-filmstrip__pic {
  aspect-ratio: 5 / 4;
  min-height: 200px;
  overflow: hidden;
}
.bn-filmstrip__num {
  display: block;
  font-family: var(--bn-font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--bn-mint);
  padding: 0.95rem 1.15rem 0;
  line-height: 1;
}
.bn-filmstrip h3 { padding: 0.4rem 1.15rem 0; font-size: 1.1rem; }
.bn-filmstrip p { padding: 0 1.15rem; color: var(--bn-muted); font-size: 0.9rem; margin: 0; }

/* Legacy process steps */
.bn-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.bn-steps article {
  background: var(--bn-foam);
  border: 1px solid var(--bn-line);
  overflow: hidden;
  padding-bottom: 1.2rem;
}
.bn-steps__pic {
  aspect-ratio: 4 / 3;
  min-height: 170px;
  overflow: hidden;
}
.bn-steps__num {
  display: block;
  font-family: var(--bn-font-display);
  font-size: 1.4rem;
  color: var(--bn-mint);
  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: var(--bn-muted); font-size: 0.9rem; margin: 0; }

/* Season / areas / why */
.bn-season {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.bn-season article {
  background: var(--bn-foam);
  overflow: hidden;
  padding-bottom: 1.15rem;
  border: 1px solid var(--bn-line);
}
.bn-season__pic {
  aspect-ratio: 4 / 3;
  min-height: 160px;
  overflow: hidden;
}
.bn-season__tag {
  display: inline-block;
  margin: 0.85rem 1.1rem 0;
  font-family: var(--bn-font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--bn-aqua-deep);
  text-transform: uppercase;
}
.bn-season h3 { padding: 0.35rem 1.1rem 0; font-size: 1.05rem; }
.bn-season p { padding: 0 1.1rem; margin: 0; font-size: 0.9rem; color: var(--bn-muted); }

.bn-areas__map {
  margin: 1.35rem 0 0.5rem;
  border-radius: var(--bn-radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  min-height: 200px;
}

.bn-why {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.bn-why article {
  background: var(--bn-foam);
  border: 1px solid var(--bn-line);
  overflow: hidden;
  padding-bottom: 1.15rem;
}
.bn-why__pic {
  aspect-ratio: 5 / 3;
  min-height: 160px;
  overflow: hidden;
}
.bn-why__num {
  display: block;
  font-family: var(--bn-font-display);
  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: var(--bn-muted); }

/* 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: 1px solid var(--bn-line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.35s var(--bn-ease), border-color 0.35s;
}
.bn-card:hover {
  transform: translateY(-4px);
  border-color: var(--bn-mint);
}
.bn-card--plain { background: var(--bn-linen); box-shadow: none; }
.bn-card__link { color: inherit; display: flex; flex-direction: column; height: 100%; }
.bn-card__pic {
  aspect-ratio: 16 / 10;
  min-height: 200px;
  overflow: hidden;
}
.bn-card__pic--tall { aspect-ratio: 4 / 3; min-height: 220px; }
.bn-card__pic img { transition: transform 0.85s 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: var(--bn-muted); font-size: 0.92rem; margin: 0; }
.bn-card__meta {
  display: inline-block;
  font-family: var(--bn-font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--bn-coral);
  margin-bottom: 0.35rem;
}

/* Voices */
.bn-voices {
  display: grid;
  gap: 1.25rem;
}
.bn-voices--row {
  grid-template-columns: repeat(3, 1fr);
}
.bn-voices blockquote {
  margin: 0;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  align-items: start;
  background: var(--bn-foam);
  border: 1px solid var(--bn-line);
  padding: 1.35rem;
}
.bn-voices__pic {
  width: 72px;
  height: 72px;
  min-height: 72px;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1;
}
.bn-voices p { font-size: 0.98rem; }
.bn-voices cite {
  display: block;
  font-style: normal;
  font-family: var(--bn-font-display);
  font-weight: 600;
}
.bn-voices small { color: var(--bn-muted); }

/* 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: var(--bn-muted); }
.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);
  padding: 1.25rem 1.3rem;
}
.bn-price article.is-hot {
  background: var(--bn-ink);
  color: var(--bn-linen);
  border-color: var(--bn-ink);
  transform: scale(1.02);
}
.bn-price .price {
  font-family: var(--bn-font-display);
  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(247, 244, 239, 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: 300px;
  overflow: hidden;
  border-radius: var(--bn-radius);
}
.bn-team__pic img { transition: transform 0.85s 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: var(--bn-muted); font-size: 0.92rem; margin: 0; }

/* Blog notes / blog row */
.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: 1px solid var(--bn-line);
  overflow: hidden;
}
.bn-notes--grid article { grid-template-columns: 1fr; }
.bn-notes__pic {
  aspect-ratio: 4 / 3;
  min-height: 160px;
  overflow: hidden;
}
.bn-notes article > div:last-child { padding: 1rem 1.1rem 1.2rem; }
.bn-notes time { font-size: 0.8rem; color: var(--bn-muted); }
.bn-notes h3 { font-size: 1.1rem; margin-top: 0.35rem; }
.bn-notes p { color: var(--bn-muted); font-size: 0.92rem; margin: 0; }

.bn-blogrow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.bn-blogrow article {
  background: var(--bn-foam);
  border: 1px solid var(--bn-line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s var(--bn-ease);
}
.bn-blogrow article:hover {
  border-color: var(--bn-mint);
  transform: translateY(-3px);
}
.bn-blogrow__pic {
  aspect-ratio: 16 / 10;
  min-height: 200px;
  overflow: hidden;
}
.bn-blogrow__pic img { transition: transform 0.9s var(--bn-ease); }
.bn-blogrow article:hover .bn-blogrow__pic img { transform: scale(1.06); }
.bn-blogrow__body { padding: 1.15rem 1.2rem 1.35rem; }
.bn-blogrow time { font-size: 0.8rem; color: var(--bn-muted); }
.bn-blogrow h3 { font-size: 1.12rem; margin-top: 0.35rem; }
.bn-blogrow p { color: var(--bn-muted); 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;
  list-style: none;
  padding: 0;
  margin: 0;
}
.bn-chips--tight { margin: 1.15rem 0 0.25rem; gap: 0.55rem; }
.bn-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--bn-foam);
  border: 1px solid var(--bn-line);
  border-radius: var(--bn-radius-sm);
  padding: 0.55rem 1rem;
  min-height: 44px;
  font-size: 0.88rem;
  font-weight: 600;
}
.bn-chip:hover { border-color: var(--bn-mint); color: var(--bn-ink); }
.bn-chip span { color: var(--bn-aqua-deep); font-weight: 700; }

.bn-howto {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.bn-howto article {
  background: var(--bn-foam);
  border: 1px solid var(--bn-line);
  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: 1px solid var(--bn-line);
  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: 600;
  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-mint);
  font-size: 1.4rem;
  font-weight: 400;
}
.bn-faq details[open] summary::after { content: "−"; }
.bn-faq details p {
  color: var(--bn-muted);
  padding-bottom: 1rem;
}

.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: 600;
  line-height: 1.35;
}
.bn-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 2px solid var(--bn-mint);
}
.bn-timeline li {
  position: relative;
  padding: 0 0 1.6rem 1.5rem;
}
.bn-timeline li::before {
  content: "";
  position: absolute;
  left: -6px; top: 0.45rem;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--bn-mint);
  box-shadow: 0 0 0 4px var(--bn-linen);
}
.bn-timeline strong {
  font-family: var(--bn-font-display);
  font-size: 1.25rem;
  color: var(--bn-ink);
}

.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-display);
  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: rgba(247, 244, 239, 0.08);
  border: 1px solid rgba(201, 228, 240, 0.2);
  padding: 1.5rem 1.2rem;
  text-align: center;
}
.bn-values h3 {
  font-family: var(--bn-font-display);
  font-size: 1.8rem;
  color: var(--bn-mint);
}

.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: 1px solid var(--bn-line);
  padding: 1.5rem;
}
.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-linen);
  border-radius: var(--bn-radius-sm);
  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-mint);
  background: var(--bn-foam);
  box-shadow: 0 0 0 4px rgba(123, 196, 178, 0.22);
}
.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(123, 196, 178, 0.28); color: var(--bn-ink); }
.bn-alert--err { background: rgba(224, 122, 106, 0.18); color: #9b3d32; }
.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: 1px solid var(--bn-line);
  overflow: hidden;
  padding-bottom: 1.2rem;
}
.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-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: var(--bn-radius);
  background: var(--bn-sky);
  color: var(--bn-ink);
  font-weight: 700;
}
.bn-social a:hover { background: var(--bn-mint); color: var(--bn-ink); }

/* —— Finale —— */
.bn-finale {
  position: relative;
  min-height: min(58svh, 520px);
  display: grid;
  place-items: center;
  color: var(--bn-linen);
  overflow: hidden;
  text-align: center;
  background: var(--bn-ink);
}
.bn-finale__bg {
  position: absolute;
  inset: 0;
  min-height: 100%;
}
.bn-finale__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 31, 42, 0.45), rgba(11, 31, 42, 0.88)),
    linear-gradient(90deg, rgba(224, 122, 106, 0.18), transparent 50%);
}
.bn-finale__in {
  position: relative;
  z-index: 2;
  padding: 4.5rem 1.35rem;
  max-width: 40rem;
}
.bn-finale__brand {
  font-family: var(--bn-font-mark);
  font-weight: 700;
  font-size: clamp(2.6rem, 9vw, 5rem);
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin: 0 0 0.85rem;
  color: var(--bn-mint);
}
.bn-finale h2 { font-size: clamp(1.85rem, 4vw, 3rem); }
.bn-finale p { color: rgba(247, 244, 239, 0.88); }

/* —— Footer —— */
.bn-foot {
  position: relative;
  background: var(--bn-ink);
  color: rgba(247, 244, 239, 0.82);
  padding: 4rem 1.35rem 1.5rem;
  z-index: 1;
}
.bn-foot__wave {
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bn-mint), var(--bn-sky), var(--bn-coral));
  opacity: 0.7;
}
.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: 700;
  color: var(--bn-mint);
  margin: 0 0 0.5rem;
}
.bn-foot__tag { color: var(--bn-sky); font-weight: 600; }
.bn-foot h3 {
  font-family: var(--bn-font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  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(201, 228, 240, 0.15);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

/* —— Reveal / fade —— */
.js [data-fade] {
  opacity: 0;
  transform: translateY(36px);
}
.js [data-fade].is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.9s var(--bn-ease), transform 0.9s var(--bn-ease);
}
.js [data-fade] { transition-delay: calc(var(--d, 0) * 95ms); }

.js [data-reveal] {
  clip-path: inset(10% 10% 10% 10%);
  transform: scale(1.08);
  transition: clip-path 1.2s var(--bn-ease), transform 1.2s var(--bn-ease);
}
.js [data-reveal].is-in {
  clip-path: inset(0 0 0 0);
  transform: none;
}
.js [data-reveal] img {
  transform: scale(1.14);
  transition: transform 1.4s var(--bn-ease);
}
.js [data-reveal].is-in img { transform: scale(1); }
.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); }

.js .bn-hero [data-fade] {
  transform: translateY(28px);
}
.js .bn-hero [data-fade].is-in {
  transition-duration: 1s;
}

/* Keyframes */
@keyframes textRise {
  from { opacity: 0; transform: translateY(52px); }
  to { opacity: 1; transform: none; }
}
@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.14) translate(-2%, 1.5%); }
}
@keyframes btnPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.035); }
}
@keyframes rippleOut {
  to { transform: scale(18); opacity: 0; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: none; }
}

/* —— Responsive —— */
@media (max-width: 1100px) {
  .bn-bento {
    grid-template-columns: repeat(4, 1fr);
  }
  .bn-bento__item { grid-column: span 2; }
  .bn-bento__item--lg { grid-column: span 4; grid-row: span 1; }
  .bn-bento__item--mid { grid-column: span 2; grid-row: span 1; }
  .bn-bento__item--lg .bn-bento__pic,
  .bn-bento__item--mid .bn-bento__pic {
    min-height: 220px;
    aspect-ratio: 16 / 10;
  }
  .bn-voices--row { grid-template-columns: 1fr; }
}

@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 {
    min-height: 85svh;
    min-height: 85vh;
  }
  .bn-pagehero { min-height: 52svh; }
  .bn-hero__copy {
    padding-top: 3.5rem;
    padding-bottom: max(3rem, env(safe-area-inset-bottom, 0px) + 1.5rem);
  }
  .bn-hero__brand { font-size: clamp(3rem, 17vw, 5rem); }
  .bn-hero h1 { max-width: none; font-size: clamp(1.4rem, 5.2vw, 1.85rem); }

  .bn-section { padding: 2.75rem 0; }
  .bn-section--intro { padding-bottom: 2.5rem; }
  .bn-section__head { margin-bottom: 1.35rem; }
  .bn-section__head--row {
    flex-direction: column;
    align-items: flex-start;
  }

  .bn-intro {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .bn-intro__media {
    min-height: 280px;
    aspect-ratio: 4 / 3;
  }
  .bn-intro__copy { padding: 2rem 1.25rem; }

  .bn-split,
  .bn-split--flip,
  .bn-areas,
  .bn-contact,
  .bn-featured {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    direction: ltr;
  }
  .bn-split__media,
  .bn-split__media--tall,
  .bn-featured__pic {
    min-height: 240px;
    aspect-ratio: 4 / 3;
  }

  .bn-bento {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .bn-bento__item,
  .bn-bento__item--lg,
  .bn-bento__item--mid {
    grid-column: span 1;
    grid-row: span 1;
  }
  .bn-bento__pic,
  .bn-bento__item--lg .bn-bento__pic,
  .bn-bento__item--mid .bn-bento__pic {
    min-height: 200px;
    aspect-ratio: 16 / 10;
  }

  .bn-ba,
  .bn-ba--slider {
    grid-template-columns: 1fr;
  }
  .bn-ba__divider {
    width: 100%;
    height: 3px;
  }
  .bn-ba--slider figure { min-height: 240px; aspect-ratio: 4 / 3; }

  .bn-filmstrip__item { flex-basis: min(82vw, 300px); }

  .bn-grid--3,
  .bn-grid--4,
  .bn-steps,
  .bn-why,
  .bn-team,
  .bn-notes--grid,
  .bn-blogrow,
  .bn-howto,
  .bn-stats,
  .bn-values,
  .bn-price--row,
  .bn-channels,
  .bn-season,
  .bn-foot__grid,
  .bn-areas__list--grid,
  .bn-voices--row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .bn-mosaic {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0.25rem 0 0.5rem;
    -webkit-overflow-scrolling: touch;
    grid-template-columns: none;
  }
  .bn-mosaic__item {
    flex: 0 0 min(82vw, 300px);
    scroll-snap-align: start;
  }
  .bn-mosaic__item--wide {
    grid-column: auto;
    flex-basis: min(88vw, 340px);
  }
  .bn-mosaic__pic,
  .bn-mosaic__item--wide .bn-mosaic__pic {
    aspect-ratio: 4 / 3;
    min-height: 200px;
  }

  .bn-actions--hero {
    flex-direction: column;
    width: 100%;
    margin-top: 1.25rem;
  }
  .bn-actions--hero .bn-btn { width: 100%; }
  .bn-notes article,
  .bn-popular article {
    grid-template-columns: 1fr;
  }
  .bn-voices blockquote { grid-template-columns: 72px 1fr; }
  .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: 2.8rem; top: -0.15em; opacity: 0.55; }
  .bn-map, .bn-map iframe { min-height: 240px; }
  .bn-finale { min-height: 52svh; }
  .bn-finale__bg { min-height: 100%; }
}

@media (max-width: 480px) {
  body.bn-body { font-size: 15px; }
  .bn-hero { min-height: 85svh; }
  .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-filmstrip { padding-left: 0.9rem; padding-right: 0.9rem; }
  .bn-film figure { flex-basis: 85vw; min-height: 190px; }
  .bn-intro__media { min-height: 220px; }
  .bn-team__pic { min-height: 320px; }
  .bn-foot__bar { flex-direction: column; }
  .bn-hero__brand { font-size: clamp(2.8rem, 18vw, 4.2rem); }
  .bn-section { padding: 2.35rem 0; }
}

@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"],
  .js [data-reveal] img,
  .js [data-fade] img {
    opacity: 1;
    transform: none;
    clip-path: none;
    filter: none;
  }
  .bn-hero__media img,
  .bn-pagehero__media img { animation: none; }
  .bn-ribbon__track { animation: none; }
}
