@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

/* ================================================================
   ROOT
   ================================================================ */
:root {
  color-scheme: dark;

  --brand-primary: #9E8E7E;
  --brand-light:   #B8A898;
  --brand-dark:    #7A6A5C;
  --bg-base:       #080808;
  --bg-elevated:   #0F0F0F;
  --black-card:    #121212;
  --black-border:  #1E1E1E;
  --white:         #FFFFFF;
  --grey-100:      #EDEAE6;
  --grey-400:      #888078;
  --grey-600:      #4A4440;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', 'Helvetica Neue', sans-serif;

  --nav-height:      72px;
  --max-width:       1200px;
  --container-pad:   clamp(1.25rem, 5vw, 3.5rem);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ================================================================
   RESET
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  margin: 0;
  padding: 0;
  background: var(--bg-base);
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-base);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.018;
  pointer-events: none;
  z-index: 0;
}

img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  touch-action: manipulation;
}

/* ================================================================
   ACCESSIBILITY
   ================================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--brand-primary);
  color: var(--bg-base);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 9999;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ================================================================
   TYPOGRAPHY
   ================================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.625rem); }
h4 { font-size: 1.0625rem; }

p {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--grey-100);
  line-height: 1.8;
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-primary);
}

/* ================================================================
   LAYOUT
   ================================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

section[id] { scroll-margin-top: var(--nav-height); }

.section { padding-block: clamp(4rem, 9vw, 8rem); }

.section-header { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-header .eyebrow { margin-bottom: 0.875rem; }
.section-header h2 { max-width: 720px; }
.section-header p  { max-width: 580px; margin-top: 1rem; color: var(--grey-400); }

.section-header--split {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.header-link {
  flex-shrink: 0;
  margin-top: 0.5rem;
  color: var(--brand-primary);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s ease;
}
.header-link:hover { gap: 0.8rem; }
.header-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--brand-primary);
  color: var(--bg-base);
}
.btn-primary:hover {
  background: var(--brand-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(158,142,126,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover { border-color: var(--brand-primary); color: var(--brand-primary); }

.btn-whatsapp {
  background: #25D366;
  color: #000;
}
.btn-whatsapp:hover {
  background: #20BE5B;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ================================================================
   NAV
   ================================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: #0d0c0b;
  border-bottom: 1px solid rgba(158,142,126,0.18);
}

.nav-inner {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-400);
  padding: 0.5rem 0.7rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease;
}
.nav-link:hover { color: var(--white); }
.nav-link.active { color: var(--brand-primary); }

.btn-nav {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.2rem;
  background: var(--brand-primary);
  color: var(--bg-base);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.btn-nav:hover { background: var(--brand-light); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/logos/BMN-Watermark-logo2.jpeg');
  background-size: cover;
  background-position: center 35%;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.72) 55%, rgba(8,8,8,0.88) 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-base) 0%, transparent 28%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding-block: clamp(3rem, 7vw, 6rem);
}

.hero-content .eyebrow {
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-expo) 0.2s forwards;
}
.hero-content h1 {
  font-size: clamp(2.75rem, 7vw, 5.75rem);
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-expo) 0.35s forwards;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--brand-primary);
}
.hero-tagline {
  font-size: clamp(1rem, 1.8vw, 1.175rem);
  color: var(--grey-400);
  max-width: 540px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-expo) 0.5s forwards;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-expo) 0.65s forwards;
}
.hero-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--grey-400);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}
.hero-phone:hover { color: var(--white); }
.hero-phone svg { width: 15px; height: 15px; stroke: var(--brand-primary); fill: none; stroke-width: 2; flex-shrink: 0; }

.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 5rem);
  padding-top: 2.5rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--black-border);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-expo) 0.85s forwards;
}
.hero-stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: var(--grey-400);
  letter-spacing: 0.06em;
  margin-top: 0.3rem;
}

/* ================================================================
   TRUST STRIP
   ================================================================ */
.trust-strip {
  background: var(--black-card);
  border-bottom: 1px solid var(--black-border);
  padding-block: 1.125rem;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem 3rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--grey-400);
}
.trust-item svg {
  width: 15px; height: 15px;
  stroke: var(--brand-primary);
  fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

/* ================================================================
   SERVICE CARDS (HOMEPAGE OVERVIEW)
   ================================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--black-border);
}

.service-card {
  background: var(--black-card);
  padding: 2.25rem 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 0;
  background: var(--brand-primary);
  transition: height 0.5s var(--ease-expo);
}
.service-card:hover { background: var(--bg-elevated); }
.service-card:hover::before { height: 100%; }

.service-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(158,142,126,0.09);
  border: 1px solid rgba(158,142,126,0.2);
  border-radius: var(--radius-md);
}
.service-icon svg {
  width: 21px; height: 21px;
  stroke: var(--brand-primary);
  fill: none; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}

.service-card h3 { font-size: 1.2rem; color: var(--white); }
.service-card p  { font-size: 0.875rem; color: var(--grey-400); line-height: 1.7; flex: 1; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-top: 0.25rem;
  transition: gap 0.2s ease, color 0.2s ease;
}
.service-link:hover { gap: 0.7rem; color: var(--brand-light); }
.service-link svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ================================================================
   SERVICE CARDS (FULL PAGE)
   ================================================================ */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 1.5rem;
}

.service-full-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.service-full-card:hover {
  border-color: rgba(158,142,126,0.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.service-full-card h3 { font-size: 1.375rem; }
.service-full-card p  { font-size: 0.9375rem; color: var(--grey-400); }

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--brand-primary);
  background: rgba(158,142,126,0.1);
  border: 1px solid rgba(158,142,126,0.2);
  border-radius: 100px;
  padding: 0.3rem 0.75rem;
  margin-top: auto;
  width: fit-content;
}

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-section {
  background: var(--bg-elevated);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  padding-block: clamp(4rem, 8vw, 7rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(158,142,126,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { max-width: 640px; margin-inline: auto; position: relative; }
.cta-inner h2 { margin-bottom: 1.125rem; }
.cta-inner > p { color: var(--grey-400); margin-bottom: 2.5rem; }
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  justify-content: center;
}

/* ================================================================
   ABOUT GRID
   ================================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--black-card);
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  background: rgba(12,12,12,0.9);
  border: 1px solid var(--black-border);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 1.125rem 1.375rem;
  text-align: center;
}
.about-badge-number {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--brand-primary);
  line-height: 1;
}
.about-badge-label {
  font-size: 0.7rem;
  color: var(--grey-400);
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
}

.about-content { padding-top: 0.5rem; }
.about-content h2 { margin-bottom: 1.25rem; }
.about-content p + p { margin-top: 0.875rem; }

.about-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.about-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--grey-100);
}
.about-list-item svg {
  width: 17px; height: 17px;
  stroke: var(--brand-primary);
  fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

.clients-strip {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--black-border);
}
.clients-strip .eyebrow { margin-bottom: 1rem; }
.clients-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.client-tag {
  background: var(--bg-elevated);
  border: 1px solid var(--black-border);
  border-radius: 100px;
  padding: 0.35rem 0.875rem;
  font-size: 0.8rem;
  color: var(--grey-400);
}

/* ================================================================
   GALLERY GRID
   ================================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--black-card);
}
.gallery-item:nth-child(1),
.gallery-item:nth-child(7) { aspect-ratio: 16/10; grid-column: span 2; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.gallery-item:hover img { transform: scale(1.045); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.88) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption { font-size: 0.8rem; color: var(--grey-100); letter-spacing: 0.02em; }

/* ================================================================
   LIGHTBOX
   ================================================================ */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#lightbox.open { opacity: 1; pointer-events: all; }

.lightbox-img {
  max-width: 88vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  color: var(--white);
  transition: background-color 0.2s ease;
}
.lightbox-close:hover { background: rgba(255,255,255,0.14); }
.lightbox-close svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  color: var(--white);
  transition: background-color 0.2s ease;
}
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.14); }
.lightbox-prev svg, .lightbox-next svg {
  width: 20px; height: 20px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.lightbox-caption {
  position: absolute;
  bottom: 1.75rem; left: 50%;
  transform: translateX(-50%);
  font-size: 0.8125rem;
  color: var(--grey-400);
  text-align: center;
  max-width: 60vw;
}

/* ================================================================
   REVIEWS
   ================================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 8rem;
  color: rgba(158,142,126,0.06);
  line-height: 1;
  pointer-events: none;
}
.review-card:hover {
  border-color: rgba(158,142,126,0.25);
  transform: translateY(-2px);
}
.review-stars {
  display: flex;
  gap: 3px;
}
.review-stars svg {
  width: 14px; height: 14px;
  fill: var(--brand-primary);
}
.review-text {
  font-size: 0.9375rem;
  color: var(--grey-100);
  line-height: 1.8;
  flex: 1;
  font-style: italic;
}
.review-author {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  padding-top: 0.75rem;
  border-top: 1px solid var(--black-border);
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  margin-bottom: 3rem;
}
.reviews-summary-score {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 600;
  color: var(--brand-primary);
  line-height: 1;
}
.reviews-summary-label { font-size: 0.875rem; color: var(--grey-400); margin-top: 0.25rem; }

/* ================================================================
   FAQ ACCORDION
   ================================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--black-border);
  background: var(--black-card);
}
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--white);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.faq-question:hover { background: var(--bg-elevated); }
.faq-question[aria-expanded="true"] { color: var(--brand-primary); background: var(--bg-elevated); }

.faq-icon {
  width: 20px; height: 20px;
  stroke: var(--brand-primary);
  fill: none; stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer.open { max-height: 600px; }
.faq-answer-inner {
  padding: 0 2rem 1.75rem;
  font-size: 0.9375rem;
  color: var(--grey-400);
  line-height: 1.85;
}

/* ================================================================
   CONTACT
   ================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  transition: border-color 0.3s ease;
}
.contact-item:hover { border-color: rgba(158,142,126,0.3); }

.contact-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(158,142,126,0.1);
  border: 1px solid rgba(158,142,126,0.2);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}
.contact-icon svg {
  width: 19px; height: 19px;
  stroke: var(--brand-primary);
  fill: none; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}
.contact-item-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 0.25rem;
}
.contact-item-value { font-size: 1rem; color: var(--white); font-weight: 500; }
.contact-item-value a { transition: color 0.2s ease; }
.contact-item-value a:hover { color: var(--brand-primary); }

.contact-items-list { display: flex; flex-direction: column; gap: 0.875rem; }

.contact-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 2rem;
}

/* ================================================================
   MAP
   ================================================================ */
.leaflet-container { background: #1a2330 !important; }

.leaflet-popup-content-wrapper {
  background: var(--black-card) !important;
  border: 1px solid var(--black-border) !important;
  border-radius: 8px !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6) !important;
  color: var(--white) !important;
}
.leaflet-popup-tip { background: var(--black-card) !important; }
.leaflet-popup-content { color: var(--white); font-family: var(--font-body); }

#map {
  height: 480px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--black-border);
  overflow: hidden;
}

.towns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}
.town-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: border-color 0.25s ease;
}
.town-card:hover { border-color: rgba(158,142,126,0.3); }
.town-card svg { width: 17px; height: 17px; stroke: var(--brand-primary); fill: none; stroke-width: 1.6; flex-shrink: 0; }
.town-card span { font-size: 0.9375rem; color: var(--grey-100); }

/* ================================================================
   PAGE HERO (INNER PAGES)
   ================================================================ */
.page-hero {
  padding-top: calc(var(--nav-height) + clamp(3rem, 6vw, 5rem));
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--black-border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/logos/BMN-Watermark-logo2.jpeg');
  background-size: cover;
  background-position: center center;
  opacity: 0.07;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(8,8,8,0.97) 0%, rgba(8,8,8,0.82) 60%, rgba(8,8,8,0.94) 100%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { margin-bottom: 0.875rem; }
.page-hero h1 { max-width: 700px; margin-bottom: 1rem; }
.page-hero p  { max-width: 560px; color: var(--grey-400); }

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: var(--black-card);
  border-top: 1px solid var(--black-border);
  padding-top: clamp(3.5rem, 7vw, 6rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.4fr 1.4fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.footer-logo img { height: 42px; width: auto; object-fit: contain; margin-bottom: 1rem; }
.footer-tagline { font-size: 0.875rem; color: var(--grey-400); line-height: 1.7; max-width: 260px; margin-bottom: 1.5rem; }

.footer-social { display: flex; gap: 0.625rem; }
.footer-social-link {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-elevated);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  color: var(--grey-400);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer-social-link:hover { color: var(--brand-primary); border-color: rgba(158,142,126,0.5); }
.footer-social-link svg { width: 14px; height: 14px; fill: currentColor; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 1.375rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a { font-size: 0.875rem; color: var(--grey-400); transition: color 0.2s ease; }
.footer-links a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--grey-400);
  margin-bottom: 0.75rem;
  transition: color 0.2s ease;
}
.footer-contact-item:hover { color: var(--white); }
.footer-contact-item svg {
  width: 13px; height: 13px;
  stroke: var(--brand-primary);
  fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--black-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p { font-size: 0.8rem; color: var(--grey-600); }

/* ================================================================
   FLOATING WHATSAPP
   ================================================================ */
.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: max(1.5rem, calc(1.5rem + env(safe-area-inset-bottom)));
  z-index: 900;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s var(--ease-expo), transform 0.75s var(--ease-expo);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }
.fade-up:nth-child(5) { transition-delay: 0.32s; }
.fade-up:nth-child(6) { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  .fade-up,
  .hero-content .eyebrow,
  .hero-content h1,
  .hero-tagline,
  .hero-ctas,
  .hero-stats {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ================================================================
   ABOUT HOME LAYOUT
   ================================================================ */
.about-home {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.stats-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background-color: var(--black-border);
  overflow: hidden;
}
.stat-item {
  background: var(--black-card);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--brand-primary);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--grey-400);
  letter-spacing: 0.05em;
}

/* ================================================================
   SERVICE AREA SECTION
   ================================================================ */
.service-area-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.near-me-callout {
  background: var(--bg-elevated);
  border: 1px solid var(--black-border);
  border-left: 3px solid var(--brand-primary);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  font-size: 0.9375rem;
  color: var(--grey-100);
  line-height: 1.75;
  margin-top: 1.5rem;
  font-style: italic;
}

/* ================================================================
   GALLERY PREVIEW GRID (HOMEPAGE — 4 images)
   ================================================================ */
.gallery-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-preview .gallery-item { aspect-ratio: 3/2; }
.gallery-preview .gallery-item:nth-child(1) { grid-column: span 2; }
.gallery-preview .gallery-item:nth-child(4) { grid-column: span 2; }

/* ================================================================
   UTILITIES
   ================================================================ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.text-accent { color: var(--brand-primary); }
.text-muted  { color: var(--grey-400); }

/* ================================================================
   FAQ PAGE LAYOUT
   ================================================================ */
.faq-chevron {
  width: 20px; height: 20px;
  stroke: var(--brand-primary);
  fill: none; stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }

.faq-answer p {
  padding: 0 2rem 1.75rem;
  font-size: 0.9375rem;
  color: var(--grey-400);
  line-height: 1.85;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

.faq-aside { position: sticky; top: calc(var(--nav-height) + 2rem); }

.faq-cta-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.faq-cta-card .eyebrow { margin-bottom: 0.75rem; }
.faq-cta-card h3 {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 600;
  margin-bottom: 0.875rem;
}
.faq-cta-card > p { font-size: 0.9rem; color: var(--grey-400); line-height: 1.7; margin-bottom: 1.5rem; }
.faq-cta-card .btn { width: 100%; justify-content: center; }

.faq-cta-trust {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--black-border);
}
.faq-cta-trust p { font-size: 0.8125rem; color: var(--grey-400); margin-top: 0.5rem; }
.faq-cta-trust .review-stars {
  display: flex; gap: 3px;
}
.faq-cta-trust .review-stars svg {
  fill: var(--brand-primary);
  stroke: none;
  width: 14px; height: 14px;
}

/* ================================================================
   WHERE WE WORK
   ================================================================ */
.map-wrapper { margin-bottom: 0; }

.section-intro { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-intro .eyebrow { margin-bottom: 0.75rem; }
.section-intro h2 { max-width: 650px; margin: 0 auto; }

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.coverage-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.3s ease;
}
.coverage-card:hover { border-color: rgba(158,142,126,0.3); }

.coverage-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(158,142,126,0.1);
  border: 1px solid rgba(158,142,126,0.2);
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
}
.coverage-icon svg { width: 20px; height: 20px; stroke: var(--brand-primary); fill: none; stroke-width: 1.5; }

.coverage-card h3 { font-size: 1.1875rem; font-weight: 600; margin-bottom: 0.75rem; }
.coverage-card > p { font-size: 0.9rem; color: var(--grey-400); line-height: 1.75; margin-bottom: 1rem; }

.coverage-keywords { display: flex; flex-direction: column; gap: 0.375rem; }
.coverage-keywords li {
  font-size: 0.8125rem;
  color: var(--grey-400);
  padding-left: 1rem;
  position: relative;
}
.coverage-keywords li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--brand-primary);
  font-size: 0.75rem;
  line-height: 1.6;
}

.location-content {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}

.location-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.location-stat {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
}

.location-stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--brand-primary);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.location-stat-label {
  font-size: 0.78rem;
  color: var(--grey-400);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .about-home { grid-template-columns: 1fr; }
  .service-area-inner { grid-template-columns: 1fr; }
  .gallery-preview { grid-template-columns: repeat(2,1fr); }
  .gallery-preview .gallery-item:first-child { grid-row: span 1; aspect-ratio: 3/4; }


  .nav-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 9999;
    background: #0d0c0b;
    border-top: 1px solid rgba(158,142,126,0.2);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.375rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-expo);
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-link { font-size: 1rem; padding: 0.75rem 2rem; color: var(--white); }
  .nav-toggle { display: flex; }
  .btn-nav { display: none; }

  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-aside { position: static; }
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }
  .location-content { grid-template-columns: 1fr; }
  .location-stats { position: static; }
}

@media (max-width: 768px) {
  .hero-bg {
    background-position: center center;
    background-size: 200%;
  }
  .gallery-preview { grid-template-columns: 1fr 1fr; }
  .gallery-preview .gallery-item:nth-child(1),
  .gallery-preview .gallery-item:nth-child(4) { grid-column: span 1; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(7) { grid-column: span 1; aspect-ratio: 4/3; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .reviews-summary { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.75rem; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .faq-question { padding: 1.25rem 1.25rem; font-size: 1rem; }
  .faq-answer-inner { padding: 0 1.25rem 1.5rem; }
  .faq-answer p { padding: 0 1.25rem 1.5rem; }
  .coverage-grid { grid-template-columns: 1fr; }
}
