/* ============================================================
   BrightHeartWave — global stylesheet
   Design language: warm editorial white, deep-teal ink, coral accent.
   NOTE: Bootstrap 5.3 does the grid/spacing heavy lifting — this file
   only covers brand components (bhw-*) and decorative details.
   TODO: revisit coral contrast once marketing finalises brand book.
   ============================================================ */

:root {
  --bhw-paper: #faf7f0;
  --bhw-white: #ffffff;
  --bhw-ink: #152724;
  --bhw-ink-soft: #3d4f4c;
  --bhw-teal: #0e5f5c;
  --bhw-teal-deep: #0a3d3b;
  --bhw-coral: #e2673e;
  --bhw-coral-soft: #f6dccf;
  --bhw-sand: #f0e9da;
  --bhw-mist: #eef2ee;
  --bhw-gold: #c8a24b;
  --bhw-line: rgba(21, 39, 36, 0.14);
  --bhw-line-light: rgba(255, 255, 255, 0.18);
  --bhw-font-display: "Fraunces", Georgia, serif;
  --bhw-font-body: "Manrope", -apple-system, "Segoe UI", sans-serif;
  --bhw-font-mono: "SFMono-Regular", Menlo, Consolas, monospace;
  --bhw-radius: 1.25rem;
  --bhw-radius-sm: 0.75rem;
  --bhw-shadow: 0 24px 60px -30px rgba(21, 39, 36, 0.35);
  --bhw-shadow-sm: 0 12px 32px -18px rgba(21, 39, 36, 0.28);
}

/* ---------- Base ---------- */

html {
  scroll-behavior: smooth;
}

body,html {
  font-family: var(--bhw-font-body);
  color: var(--bhw-ink);
  background: var(--bhw-paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: var(--bhw-coral);
  color: #fff;
}

img {
  max-width: 100%;
}

/* ---------- Type helpers ---------- */

.bhw-display {
  font-family: var(--bhw-font-display);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.bhw-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--bhw-font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bhw-teal);
}

.bhw-eyebrow::before {
  content: "";
  width: 2.25rem;
  height: 1px;
  background: var(--bhw-coral);
}

.bhw-eyebrow--light {
  color: rgba(255, 255, 255, 0.75);
}

.bhw-lede {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--bhw-ink-soft);
}

.bhw-mono {
  font-family: var(--bhw-font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.bhw-serif-i {
  font-family: var(--bhw-font-display);
  font-style: italic;
  font-weight: 500;
}

.text-bhw-coral { color: var(--bhw-coral) !important; }
.text-bhw-teal { color: var(--bhw-teal) !important; }

/* ---------- Buttons ---------- */

.bhw-btn {
  --bs-btn-font-weight: 700;
  --bs-btn-padding-y: 0.8rem;
  --bs-btn-padding-x: 1.6rem;
  --bs-btn-border-radius: 100px;
  font-family: var(--bhw-font-body);
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.bhw-btn:active { transform: translateY(1px); }

.bhw-btn--accent {
  --bs-btn-bg: var(--bhw-coral);
  --bs-btn-border-color: var(--bhw-coral);
  --bs-btn-color: #fff;
  --bs-btn-hover-bg: #c9532c;
  --bs-btn-hover-border-color: #c9532c;
  --bs-btn-hover-color: #fff;
  --bs-btn-active-bg: #c9532c;
  --bs-btn-active-color: #fff;
  box-shadow: 0 14px 30px -14px rgba(226, 103, 62, 0.7);
}

.bhw-btn--accent:hover { transform: translateY(-2px); }

.bhw-btn--teal {
  --bs-btn-bg: var(--bhw-teal);
  --bs-btn-border-color: var(--bhw-teal);
  --bs-btn-color: #fff;
  --bs-btn-hover-bg: var(--bhw-teal-deep);
  --bs-btn-hover-border-color: var(--bhw-teal-deep);
  --bs-btn-hover-color: #fff;
  --bs-btn-active-bg: var(--bhw-teal-deep);
  --bs-btn-active-color: #fff;
}

.bhw-btn--ghost {
  --bs-btn-color: var(--bhw-ink);
  --bs-btn-border-color: var(--bhw-line);
  --bs-btn-hover-color: var(--bhw-teal);
  --bs-btn-hover-border-color: var(--bhw-teal);
  --bs-btn-hover-bg: transparent;
  --bs-btn-active-color: var(--bhw-teal);
  background: transparent;
}

.bhw-btn--light {
  --bs-btn-bg: rgba(255, 255, 255, 0.92);
  --bs-btn-border-color: transparent;
  --bs-btn-color: var(--bhw-ink);
  --bs-btn-hover-bg: #fff;
  --bs-btn-hover-color: var(--bhw-teal);
  --bs-btn-active-bg: #fff;
  --bs-btn-active-color: var(--bhw-teal);
}

/* ---------- Topbar ---------- */

.bhw-topbar {
  background: var(--bhw-teal-deep);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
}

.bhw-topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

a.bhw-topbar__item:hover { color: #fff; }
.bhw-topbar__item i { color: var(--bhw-coral); font-size: 0.72rem; }

/* ---------- Header ---------- */

.bhw-header {
  background: rgba(250, 247, 240, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--bhw-line);
}

.bhw-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.bhw-brand__logo {
  border-radius: 50%;
  object-fit: cover;
}

.bhw-brand__name {
  font-family: var(--bhw-font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--bhw-ink);
}

.bhw-brand__name em {
  font-style: normal;
  color: var(--bhw-coral);
}

.bhw-nav__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bhw-ink-soft);
  padding-inline: 0.85rem !important;
  position: relative;
}

.bhw-nav__link::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.15rem;
  height: 2px;
  border-radius: 2px;
  background: var(--bhw-coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.bhw-nav__link:hover,
.bhw-nav__link.active {
  color: var(--bhw-ink);
}

.bhw-nav__link:hover::after { transform: scaleX(1); }

.bhw-burger {
  border: 1px solid var(--bhw-line);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  color: var(--bhw-ink);
}

.bhw-burger:focus { box-shadow: none; border-color: var(--bhw-teal); }

/* ---------- Sections ---------- */

.bhw-section {
  position: relative;
  padding-block: clamp(4rem, 8vw, 7.5rem);
}

.bhw-section--white { background: var(--bhw-white); }
.bhw-section--sand { background: var(--bhw-sand); }
.bhw-section--mist { background: var(--bhw-mist); }
.bhw-section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.bhw-section--dark {
  background: var(--bhw-teal-deep);
  color: rgba(255, 255, 255, 0.82);
}

.bhw-section--dark .bhw-lede,
.bhw-section--dark p { color: rgba(255, 255, 255, 0.72); }

.bhw-section--ink {
  background: var(--bhw-ink);
  color: rgba(255, 255, 255, 0.82);
}

.bhw-section--ink p { color: rgba(255, 255, 255, 0.68); }

/* Background-image holder — real url(../images/brightheartwave_68a5fd1f398ed.79407005.jpg) is injected by the build script */
.bhw-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bhw-rule {
  border: 0;
  border-top: 1px solid var(--bhw-line);
}

.bhw-rule--light { border-top-color: var(--bhw-line-light); }

.bhw-frame {
  border: 1px solid var(--bhw-line);
  border-radius: var(--bhw-radius);
  background: var(--bhw-white);
}

.bhw-frame--dark {
  border-color: var(--bhw-line-light);
  background: rgba(255, 255, 255, 0.05);
}

/* ---------- Cards ---------- */

.bhw-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--bhw-line);
  border-radius: var(--bhw-radius);
  background: var(--bhw-white);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.bhw-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--bhw-shadow);
  border-color: transparent;
}

.bhw-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bhw-mist);
}

.bhw-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bhw-card:hover .bhw-card__media img { transform: scale(1.06); }

.bhw-card__media--tall { aspect-ratio: 3 / 3.6; }
.bhw-card__media--wide { aspect-ratio: 16 / 9; }

.bhw-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.4rem 1.4rem 1.6rem;
}

.bhw-card__title {
  font-family: var(--bhw-font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.bhw-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  font-family: var(--bhw-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bhw-ink-soft);
}

.bhw-card__price {
  font-family: var(--bhw-font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--bhw-teal);
}

.bhw-card__price small {
  font-family: var(--bhw-font-body);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--bhw-ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- Badges & chips ---------- */

.bhw-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  font-family: var(--bhw-font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--bhw-sand);
  color: var(--bhw-ink);
  border: 1px solid var(--bhw-line);
}

.bhw-badge--dark {
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
}

.bhw-badge--accent {
  background: var(--bhw-coral);
  border-color: var(--bhw-coral);
  color: #fff;
}

.bhw-badge--outline {
  background: transparent;
  border-color: var(--bhw-teal);
  color: var(--bhw-teal);
}

.bhw-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.95rem;
  border-radius: 100px;
  border: 1px solid var(--bhw-line);
  background: var(--bhw-white);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--bhw-ink-soft);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.bhw-chip:hover,
.bhw-chip.is-active {
  background: var(--bhw-teal);
  border-color: var(--bhw-teal);
  color: #fff;
}

/* ---------- Lists ---------- */

.bhw-check {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bhw-check li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: 0.75rem;
  color: var(--bhw-ink-soft);
}

.bhw-check li i {
  position: absolute;
  left: 0;
  top: 0.15rem;
  color: var(--bhw-coral);
}

.bhw-check--light li { color: rgba(255, 255, 255, 0.78); }

.bhw-spec {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bhw-spec li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--bhw-line);
  font-size: 0.92rem;
}

.bhw-spec li span:first-child { color: var(--bhw-ink-soft); }
.bhw-spec li span:last-child { font-weight: 700; text-align: right; }

/* ---------- Stats ---------- */

.bhw-stat__num {
  font-family: var(--bhw-font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1;
  color: var(--bhw-teal);
}

.bhw-stat__label {
  font-family: var(--bhw-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bhw-ink-soft);
}

.bhw-section--dark .bhw-stat__num,
.bhw-section--ink .bhw-stat__num { color: #fff; }
.bhw-section--dark .bhw-stat__label,
.bhw-section--ink .bhw-stat__label { color: rgba(255, 255, 255, 0.55); }

/* ---------- Hero / background blocks ---------- */

.bhw-hero {
  position: relative;
  min-height: min(92vh, 60rem);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.bhw-hero .bhw-display { color: #fff; }
.bhw-hero p { color: rgba(255, 255, 255, 0.85); }

.bhw-pin {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bhw-coral);
  border: 3px solid #fff;
  box-shadow: 0 0 0 0 rgba(226, 103, 62, 0.6);
  animation: bhw-pulse 2.4s infinite;
  cursor: pointer;
}

@keyframes bhw-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(226, 103, 62, 0.55); }
  70%  { box-shadow: 0 0 0 16px rgba(226, 103, 62, 0); }
  100% { box-shadow: 0 0 0 0 rgba(226, 103, 62, 0); }
}

.bhw-pin__label {
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  white-space: nowrap;
  background: rgba(21, 39, 36, 0.85);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: 100px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(4px);
}

.bhw-pin:hover .bhw-pin__label,
.bhw-pin:focus .bhw-pin__label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* glass card floating over imagery */
.bhw-glass {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--bhw-radius);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #fff;
}

/* ---------- Marquee ---------- */

.bhw-marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.bhw-marquee__track {
  display: inline-flex;
  gap: 3rem;
  padding-right: 3rem;
  animation: bhw-marquee 36s linear infinite;
  will-change: transform;
}

.bhw-marquee:hover .bhw-marquee__track { animation-play-state: paused; }

@keyframes bhw-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Timeline / dossier ---------- */

.bhw-dossier__num {
  font-family: var(--bhw-font-display);
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 700;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--bhw-teal);
}

.bhw-tl {
  position: relative;
  padding-left: 1.75rem;
}

.bhw-tl::before {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 1px;
  background: var(--bhw-line);
}

.bhw-tl__item { position: relative; padding-bottom: 1.75rem; }

.bhw-tl__item::before {
  content: "";
  position: absolute;
  left: -1.75rem;
  top: 0.45rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--bhw-coral);
  border: 2px solid var(--bhw-paper);
  box-shadow: 0 0 0 1px var(--bhw-line);
}

.bhw-section--dark .bhw-tl::before,
.bhw-section--ink .bhw-tl::before { background: var(--bhw-line-light); }
.bhw-section--dark .bhw-tl__item::before { border-color: var(--bhw-teal-deep); }

/* ---------- Bento ---------- */

.bhw-bento {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(11rem, auto);
}

.bhw-bento__cell {
  border-radius: var(--bhw-radius);
  border: 1px solid var(--bhw-line);
  background: var(--bhw-white);
  padding: 1.5rem;
  overflow: hidden;
  position: relative;
}

.bhw-bento__cell--2x2 { grid-column: span 2; grid-row: span 2; }
.bhw-bento__cell--2x1 { grid-column: span 2; }
.bhw-bento__cell--1x2 { grid-row: span 2; }
.bhw-bento__cell--dark { background: var(--bhw-teal-deep); color: #fff; border-color: transparent; }
.bhw-bento__cell--accent { background: var(--bhw-coral); color: #fff; border-color: transparent; }

@media (max-width: 991.98px) {
  .bhw-bento { grid-template-columns: repeat(2, 1fr); }
  .bhw-bento__cell--2x2,
  .bhw-bento__cell--2x1 { grid-column: span 2; }
}

@media (max-width: 575.98px) {
  .bhw-bento { grid-template-columns: 1fr; }
  .bhw-bento__cell--2x2,
  .bhw-bento__cell--2x1 { grid-column: span 1; }
}

/* ---------- Polaroid / journal ---------- */

.bhw-polaroid {
  background: #fff;
  padding: 0.8rem 0.8rem 1rem;
  border: 1px solid var(--bhw-line);
  border-radius: 4px;
  box-shadow: var(--bhw-shadow-sm);
  transform: rotate(-1.5deg);
  transition: transform 0.3s ease;
}

.bhw-polaroid:nth-child(2n) { transform: rotate(1.6deg); }
.bhw-polaroid:hover { transform: rotate(0) translateY(-6px); }

.bhw-polaroid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 2px;
  background: var(--bhw-mist);
}

.bhw-polaroid figcaption {
  font-family: var(--bhw-font-mono);
  font-size: 0.72rem;
  padding-top: 0.6rem;
  color: var(--bhw-ink-soft);
}

/* ---------- Reviews ---------- */

.bhw-review {
  border: 1px solid var(--bhw-line);
  border-radius: var(--bhw-radius-sm);
  background: var(--bhw-white);
  padding: 1.35rem;
  height: 100%;
}

.bhw-review__route {
  font-family: var(--bhw-font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bhw-coral);
}

/* ---------- FAQ accordion ---------- */

.bhw-faq .accordion-item {
  border: 0;
  border-bottom: 1px solid var(--bhw-line);
  background: transparent;
}

.bhw-faq .accordion-button {
  background: transparent;
  font-family: var(--bhw-font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bhw-ink);
  padding: 1.25rem 0;
  box-shadow: none;
}

.bhw-faq .accordion-button:not(.collapsed) {
  color: var(--bhw-teal);
  background: transparent;
}

.bhw-faq .accordion-button::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f078";
  background-image: none;
  font-size: 0.8rem;
  color: var(--bhw-coral);
}

.bhw-faq .accordion-body {
  padding: 0 0 1.5rem;
  color: var(--bhw-ink-soft);
}

/* ---------- Forms ---------- */

.bhw-input {
  border: 1px solid var(--bhw-line);
  border-radius: var(--bhw-radius-sm);
  padding: 0.8rem 1.1rem;
  font-size: 0.95rem;
  background: var(--bhw-white);
}

.bhw-input:focus {
  border-color: var(--bhw-teal);
  box-shadow: 0 0 0 3px rgba(14, 95, 92, 0.12);
}

.bhw-form-note {
  font-size: 0.78rem;
  color: var(--bhw-ink-soft);
}

/* ---------- Disclaimer (18+ / responsible play) ---------- */

.bhw-disclaimer {
  border: 1px solid var(--bhw-line);
  border-radius: var(--bhw-radius);
  background: var(--bhw-white);
  overflow: hidden;
}

.bhw-disclaimer__head {
  background: var(--bhw-sand);
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--bhw-font-display);
  font-weight: 700;
}

.bhw-disclaimer__warn {
  background: #fdeeea;
  border: 1px solid #f3c3ae;
  border-radius: var(--bhw-radius-sm);
  padding: 1.25rem 1.5rem;
}

.bhw-disclaimer a { color: var(--bhw-teal); font-weight: 700; }

/* ---------- Cookie banner ---------- */

.bhw-cookie {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1080;
  max-width: 30rem;
  margin-inline: auto;
  background: var(--bhw-ink);
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--bhw-radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--bhw-shadow);
  transform: translateY(140%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.bhw-cookie.is-visible { transform: translateY(0); }

@media (min-width: 768px) {
  .bhw-cookie { left: auto; right: 2rem; bottom: 2rem; margin-inline: 0; }
}

/* ---------- Toasts ---------- */

.bhw-toast {
  background: var(--bhw-ink);
  color: #fff;
  border: 0;
  border-radius: var(--bhw-radius-sm);
}

.bhw-toast .bhw-toast__icon { color: var(--bhw-coral); }

/* ---------- Modal ---------- */

.bhw-modal {
  border-radius: var(--bhw-radius);
  border: 0;
}

.bhw-modal__title {
  font-family: var(--bhw-font-display);
  font-weight: 700;
}

.bhw-modal__hint { font-size: 0.85rem; color: var(--bhw-ink-soft); }

/* ---------- Footer ---------- */

.bhw-footer {
  background: var(--bhw-teal-deep);
  color: rgba(255, 255, 255, 0.75);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  font-size: 0.92rem;
}

.bhw-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--bhw-font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.bhw-footer__brand img { border-radius: 50%; }
.bhw-footer__brand em { font-style: normal; color: var(--bhw-coral); }

.bhw-footer__blurb {
  margin: 1rem 0 1.25rem;
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
}

.bhw-footer__title {
  font-family: var(--bhw-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.bhw-footer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bhw-footer__menu li { margin-bottom: 0.55rem; }

.bhw-footer__menu a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.2s ease;
}

.bhw-footer__menu a:hover { color: var(--bhw-coral); }

.bhw-footer__contact li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.bhw-footer__contact i {
  color: var(--bhw-coral);
  margin-top: 0.25rem;
  font-size: 0.8rem;
}

.bhw-footer__legal li { color: rgba(255, 255, 255, 0.6); font-size: 0.85rem; }
.bhw-footer__legal strong { color: rgba(255, 255, 255, 0.8); font-weight: 600; }

.bhw-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.25s ease;
}

.bhw-social:hover {
  background: var(--bhw-coral);
  border-color: var(--bhw-coral);
  color: #fff;
  transform: translateY(-3px);
}

.bhw-footer__bottom {
  margin-top: 2.5rem;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Misc utilities ---------- */

.bhw-iconbox {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--bhw-sand);
  color: var(--bhw-teal);
  font-size: 1.15rem;
}

.bhw-iconbox--accent {
  background: var(--bhw-coral-soft);
  color: var(--bhw-coral);
}

.bhw-deco-ring {
  position: absolute;
  border: 1px solid var(--bhw-line);
  border-radius: 50%;
  pointer-events: none;
}

.bhw-rail {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.bhw-rail > * {
  flex: 0 0 min(78vw, 22rem);
  scroll-snap-align: start;
}

.bhw-rail::-webkit-scrollbar { height: 6px; }
.bhw-rail::-webkit-scrollbar-thumb { background: var(--bhw-line); border-radius: 3px; }

.bhw-media-frame {
  position: relative;
  border-radius: var(--bhw-radius);
  overflow: hidden;
  background: var(--bhw-mist);
}

.bhw-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bhw-backtop {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1070;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: var(--bhw-teal);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(8px);
}

.bhw-backtop.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* Big outline word used as a decorative layer */
.bhw-ghost {
  font-family: var(--bhw-font-display);
  font-weight: 700;
  font-size: clamp(4rem, 14vw, 12rem);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(21, 39, 36, 0.15);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

.bhw-section--dark .bhw-ghost,
.bhw-section--ink .bhw-ghost { -webkit-text-stroke-color: rgba(255, 255, 255, 0.12); }

/* progress bar inside cards / budget splits */
.bhw-bar {
  height: 8px;
  border-radius: 4px;
  background: var(--bhw-mist);
  overflow: hidden;
}

.bhw-bar__fill {
  display: block;
  height: 100%;
  border-radius: 4px;
  background: var(--bhw-coral);
}

/* AOS safety: keep sections visible if the CDN script is blocked */
.no-js [data-aos] { opacity: 1 !important; transform: none !important; }
