@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Poppins:wght@400;500;600&display=swap');

:root {
  /* BDH primary brand colors */
  --orange: #f15a29;
  --pink: #ed2190;

  /* BDH neutrals */
  --black: #000000;
  --white: #ffffff;
  --gray-light: #f7f7f7;
  --gray-dark: #555555;

  /* BDH complementary (charts/accents only) */
  --light-orange: #ffbb43;
  --light-blue: #11a9e2;
  --bright-blue: #2c51d8;
  --green: #19bf4d;
  --light-green: #a2e437;
  --aqua: #00a0b0;

  --line: #e7e2d8;
  --radius: 14px;
  --shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  --maxw: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, Helvetica, Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  font-size: 15px;
}
h1, h2, h3 {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--black); }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); color: var(--black); }
h3 { font-size: 1.15rem; color: var(--black); }
p { margin: 0 0 1em; color: var(--black); }
a { color: var(--orange); }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
.center { text-align: center; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--pink);
  font-weight: 700;
  margin-bottom: 10px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: #d94b1e; }
.btn-pink { background: var(--pink); color: var(--white); }
.btn-pink:hover { background: #d11b7e; }
.btn-outline { background: transparent; border-color: var(--black); color: var(--black); }
.btn-outline-light { background: transparent; border-color: var(--white); color: var(--white); }
.btn-white { background: var(--white); color: var(--black); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* Header */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.topbar {
  background: var(--black);
  color: var(--white);
  font-size: 0.8rem;
}
.topbar .wrap { display: flex; justify-content: flex-end; align-items: center; padding: 6px 24px; }
.topbar a { color: var(--white); text-decoration: none; }
.social-row { display: flex; gap: 12px; align-items: center; }
.social-row a { opacity: 0.85; display: flex; }
.social-row a:hover { opacity: 1; }
.social-row img { width: 22px; height: 22px; display: block; }
/* Footer sits on white now, so invert the white-badge icons to dark badges for visibility */
footer.site-footer .social-row img { filter: invert(1); }

.navbar { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--black); }
.brand img { height: 78px; width: auto; display: block; }
nav.main-nav { display: flex; align-items: center; gap: 26px; }
nav.main-nav a { color: var(--black); text-decoration: none; font-weight: 500; font-size: 0.92rem; font-family: 'Montserrat', sans-serif; }
nav.main-nav a:hover { color: var(--orange); }
nav.main-nav a.nav-home { color: var(--orange); }
/* Nav CTA button: smaller footprint, same label size, always white text (beats the generic nav-link color rule above) */
nav.main-nav a.btn { padding: 9px 20px; }
nav.main-nav a.btn-pink, nav.main-nav a.btn-primary { color: var(--white); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; }

@media (max-width: 880px) {
  nav.main-nav { position: fixed; inset: 0 0 0 auto; width: 78%; max-width: 320px; background: var(--white); flex-direction: column; align-items: flex-start; padding: 90px 28px; gap: 22px; box-shadow: -8px 0 24px rgba(0,0,0,0.12); transform: translateX(100%); transition: transform 0.25s ease; }
  nav.main-nav.open { transform: translateX(0); }
  .nav-toggle { display: block; }
}

/* Hero - light neutral block; headline carries the orange/pink color instead */
.hero {
  background: var(--gray-light);
  color: var(--black);
  padding: 90px 0 70px;
}
.hero h1 { color: var(--black); max-width: 780px; }
.hero p.lead { color: var(--gray-dark); font-size: 1.15rem; max-width: 620px; }
.hero-sub {
  background: rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 26px;
  margin-top: 34px;
}
.text-pink { color: var(--pink); }
.text-orange { color: var(--orange); }
.btn-orange-outline { background: var(--white); color: var(--orange); border-color: var(--orange); }
.btn-orange-outline:hover { background: var(--orange); color: var(--white); }

/* Cards */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.card img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 20px; }
.tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.price { font-family: 'Montserrat', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--pink); }
.ceo-row { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: start; }
@media (max-width: 800px) { .ceo-row { grid-template-columns: 1fr; } }
.stat-row { display: flex; gap: 28px; flex-wrap: wrap; }
.stat { flex: 1; min-width: 160px; }
.stat-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--pink);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.stat-icon svg { width: 30px; height: 30px; fill: none; stroke: var(--white); stroke-width: 1.8; }
.stat .num { font-family: 'Montserrat', sans-serif; font-size: 2.4rem; color: var(--orange); font-weight: 700; }

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

/* Solid color-block section - pink (used for contrast sections, never gradient) */
.band-dark { background: var(--pink); color: var(--white); }
.band-dark h2, .band-dark h3 { color: var(--white); }
.band-dark p { color: var(--white); opacity: 0.95; }

.band-cream { background: var(--gray-light); }

table.spec { width: 100%; border-collapse: collapse; }
table.spec td { padding: 10px 0; border-bottom: 1px solid var(--line); }
table.spec td:first-child { color: var(--gray-dark); font-weight: 600; width: 45%; }

ul.check { list-style: none; padding: 0; margin: 0; }
ul.check li { padding-left: 28px; position: relative; margin-bottom: 10px; }
ul.check li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.band-dark ul.check li::before { color: var(--white); }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-grid img { width: 100%; height: 200px; object-fit: cover; border-radius: 10px; cursor: pointer; transition: opacity 0.15s ease; }
.gallery-grid img:hover { opacity: 0.85; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* Photo lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.9);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-image { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 4px; }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; color: var(--white);
  font-size: 2.2rem; line-height: 1; cursor: pointer;
}
.lightbox-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.15); color: var(--white);
  font-size: 1.8rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-arrow:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
@media (max-width: 600px) {
  .lightbox-arrow { width: 40px; height: 40px; font-size: 1.4rem; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

.disclaimer { font-size: 0.78rem; color: var(--gray-dark); max-width: 900px; margin: 0 auto; }

/* Footer - white background per brand's generous-white-space principle */
footer.site-footer { background: var(--white); color: var(--black); padding: 56px 0 24px; border-top: 1px solid var(--line); }
footer.site-footer .brand img { height: 90px; width: auto; }
footer.site-footer h4 { color: var(--black); font-family: 'Montserrat', sans-serif; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
footer.site-footer a { color: var(--gray-dark); text-decoration: none; }
footer.site-footer a:hover { color: var(--orange); }
footer.site-footer p { color: var(--gray-dark); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 2fr; gap: 36px; margin-bottom: 32px; align-items: start; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-thumbs img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 20px; font-size: 0.78rem; color: #999; }

/* Before/After comparison slider */
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
}
.ba-slider img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  pointer-events: none; border-radius: 0;
}
.ba-slider .ba-after { clip-path: inset(0 0 0 50%); }
.ba-slider .ba-handle {
  position: absolute; top: 0; left: 50%; height: 100%; width: 3px;
  background: var(--white); transform: translateX(-50%); z-index: 2;
}
.ba-slider .ba-handle::after {
  content: "\2194";
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--gray-dark);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.ba-label { position: absolute; top: 14px; font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; background: rgba(0,0,0,0.55); color: var(--white); padding: 5px 12px; border-radius: 999px; z-index: 3; }
.ba-label-before { left: 14px; }
.ba-label-after { right: 14px; }
.ba-caption { font-size: 0.85rem; color: var(--gray-dark); margin-top: 12px; }
.ba-stack { display: flex; flex-direction: column; gap: 24px; }

/* Photo carousel */
.carousel { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.carousel-track { display: flex; transition: transform 0.4s ease; }
.carousel-track img { width: 100%; flex: 0 0 100%; height: 420px; object-fit: cover; }
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.9); color: var(--black);
  font-size: 1.1rem; cursor: pointer; z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.carousel-arrow.prev { left: 14px; }
.carousel-arrow.next { right: 14px; }
.carousel-dots { display: flex; gap: 8px; justify-content: center; margin-top: 14px; }
.carousel-dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: var(--line); cursor: pointer; padding: 0; }
.carousel-dots button.active { background: var(--orange); }
@media (max-width: 700px) { .carousel-track img { height: 280px; } }

.breadcrumb { font-size: 0.85rem; color: var(--gray-dark); margin-bottom: 14px; }
.breadcrumb a { color: var(--gray-dark); }

form.embed-form { display: grid; gap: 14px; max-width: 520px; }
form.embed-form input, form.embed-form textarea {
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px; font-size: 1rem; font-family: 'Poppins', inherit;
}
form.embed-form button { justify-self: start; }

.two-col { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }
.two-col img { border-radius: var(--radius); box-shadow: var(--shadow); }
