/* ============================================
   BDHM – Professional layout (orange / charcoal)
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-primary: #e85d04;
  --color-primary-dark: #c44f03;
  --color-charcoal: #2d2d2d;
  --color-charcoal-light: #3d3d3d;
  --color-text: #2d2d2d;
  --color-text-muted: #555;
  --color-bg: #fff;
  --color-bg-alt: #f6f6f6;
  --color-border: #e5e5e5;
  --container: 1120px;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-hover: 0 8px 24px rgba(0,0,0,0.08);
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--color-text);
  line-height: 1.65;
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--color-primary-dark);
  text-decoration: none;
}

/* --------------------------------------------
   Header – charcoal bar, white nav, orange CTA
   -------------------------------------------- */
.site-header {
  background: var(--color-charcoal);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.logo-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  margin-right: auto;
}
.logo-bdhm {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-primary);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.logo-tagline {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 2px;
}
.logo-block:hover { text-decoration: none; }
.logo-block:hover .logo-bdhm { color: #f07a2e; }
.logo-block:hover .logo-tagline { color: #fff; }

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav a:hover { color: #fff; }
.nav-link.active {
  color: #fff;
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 2px;
}

.header-inner .btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  flex-shrink: 0;
}
.header-inner .btn-outline:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  text-decoration: none;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: var(--color-primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  color: #fff;
}
.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-secondary:hover {
  background: var(--color-primary);
  color: #fff;
}
.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.btn-outline {
  background: #fff;
  color: var(--color-charcoal);
  border: 2px solid var(--color-charcoal);
}
.btn-outline:hover {
  background: var(--color-bg-alt);
  color: var(--color-charcoal);
  text-decoration: none;
}
.btn-outline.btn-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.8);
}
.btn-outline.btn-light:hover {
  background: #fff;
  color: var(--color-charcoal);
  border-color: #fff;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #fff;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

/* --------------------------------------------
   Hero – full-bleed image with overlay, centered
   -------------------------------------------- */
.hero-split {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-split-image {
  position: absolute;
  inset: 0;
}
.hero-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-split-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,45,45,0.88) 0%, rgba(45,45,45,0.75) 100%);
}

.hero-split-panel {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 48px 24px;
  max-width: 640px;
}

.hero-split-panel h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.hero-company {
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.hero-region {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
.hero-phone {
  color: rgba(255,255,255,0.95);
  font-weight: 600;
  font-size: 1.05rem;
}
.hero-phone:hover { color: #fff; text-decoration: none; }

/* --------------------------------------------
   Sections – clear hierarchy, spacing
   -------------------------------------------- */
.section {
  padding: 80px 0;
}
.section:nth-child(even) {
  background: var(--color-bg-alt);
}

.section-title-charcoal {
  font-size: clamp(1.5rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 12px;
}
.section-lead {
  color: var(--color-text-muted);
  margin-bottom: 24px;
  max-width: 640px;
}

/* Content blocks – card-style stacked (no side-by-side copy)
   Same HTML: block-row with block-image + block-content
   */
.block-split .container {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.block-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 720px;
  margin: 0 auto;
}
.section:nth-child(even) .block-row {
  background: #fff;
}

.block-row .block-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.block-row .block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.block-row .block-content {
  padding: 32px 28px;
}
.block-row .block-content p {
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0;
}

.block-row-reverse .block-content { order: -1; }

@media (min-width: 720px) {
  .block-row {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }
  .block-row .block-image { aspect-ratio: auto; min-height: 280px; }
  .block-row-reverse .block-content { order: unset; }
  .block-row-reverse .block-image { order: -1; }
}

/* Intro section (About BDHM heading only) */
.section .container:only-child .section-title-charcoal {
  text-align: center;
  margin-bottom: 0;
}

/* --------------------------------------------
   Gallery
   -------------------------------------------- */
.gallery-section {
  padding-bottom: 80px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}
@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
.gallery-grid-6 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg-alt);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.03); }

.gallery-more-wrap {
  margin-top: 24px;
  text-align: center;
}
.link-arrow {
  font-weight: 600;
  color: var(--color-primary);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.link-arrow:hover { color: var(--color-primary-dark); text-decoration: underline; }
.link-arrow::after { content: '→'; }

/* --------------------------------------------
   Reviews
   -------------------------------------------- */
.reviews-section {
  background: var(--color-charcoal);
  color: #fff;
}
.reviews-section .section-title-charcoal,
.reviews-section h2 { color: #fff; }

.reviews-heading {
  font-size: clamp(1.5rem, 2.5vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.reviews-google {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  margin-bottom: 32px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
}
.reviews-rating { font-weight: 700; font-size: 1.25rem; color: #fff; }
.reviews-stars { color: var(--color-primary); letter-spacing: 2px; }
.reviews-company { font-weight: 600; }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px;
  margin: 0;
  transition: background 0.2s ease;
}
.review-card:hover {
  background: rgba(255,255,255,0.08);
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.review-card .review-stars {
  color: var(--color-primary);
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.review-card .review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}
.review-card .review-text::before,
.review-card .review-text::after { content: none; }

.review-link {
  font-size: 0.85rem;
  color: var(--color-primary);
  font-weight: 500;
}
.review-link:hover { color: #f07a2e; }

.review-footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.review-name {
  font-weight: 600;
  color: #fff;
}

/* --------------------------------------------
   CTA band
   -------------------------------------------- */
.cta-section {
  text-align: center;
  background: var(--color-charcoal);
  color: #fff;
  padding: 64px 24px;
}
.cta-section h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  color: #fff;
  margin-bottom: 12px;
  font-weight: 700;
}
.cta-section p {
  margin-bottom: 24px;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section .btn-primary {
  background: var(--color-primary);
  color: #fff;
}
.cta-section .btn-primary:hover {
  background: var(--color-primary-dark);
  color: #fff;
}
.cta-section .phone {
  margin-top: 20px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}
.cta-section .phone a {
  color: #fff;
  font-weight: 600;
}
.cta-section .phone a:hover { color: var(--color-primary); text-decoration: none; }

/* --------------------------------------------
   Footer – orange bar
   -------------------------------------------- */
.site-footer.footer-orange {
  background: var(--color-primary);
  color: #fff;
  padding: 40px 24px 28px;
}
.footer-orange-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-social {
  display: flex;
  gap: 20px;
}
.footer-social a {
  color: #fff;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.footer-social a:hover {
  background: #fff;
  color: var(--color-charcoal);
  border-color: #fff;
  text-decoration: none;
}
.icon-fb { font-family: inherit; }
.icon-ig { font-size: 1.1rem; }

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.25);
}

/* --------------------------------------------
   Inner pages (Services, About, Careers, Privacy)
   -------------------------------------------- */
.page-main {
  padding: 56px 0 80px;
}
.page-main h1 {
  font-size: clamp(1.75rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.page-main .lead {
  color: var(--color-text-muted);
  margin-bottom: 36px;
  font-size: 1.05rem;
  line-height: 1.65;
}
.page-main h2 {
  font-size: 1.25rem;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--color-charcoal);
  font-weight: 600;
}
.page-main p {
  margin-bottom: 16px;
  color: var(--color-text);
  line-height: 1.65;
}
.page-main ul {
  margin-left: 24px;
  margin-bottom: 20px;
}
.page-main li {
  margin-bottom: 8px;
}

.service-list {
  list-style: none;
  margin-bottom: 24px;
  padding-left: 0;
}
.service-list li {
  padding: 10px 0 10px 28px;
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
}

/* --------------------------------------------
   Contact page – details + map
   -------------------------------------------- */
.contact-page {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - 72px - 180px);
}
@media (min-width: 900px) {
  .contact-page { grid-template-columns: 1fr 1fr; }
}

.contact-panel {
  padding: 48px 24px 56px;
  background: var(--color-bg-alt);
}
@media (min-width: 900px) {
  .contact-panel { padding: 56px 48px 64px; }
}

.contact-title {
  font-size: clamp(1.75rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.contact-panel > p {
  color: var(--color-text-muted);
  margin-bottom: 28px;
  line-height: 1.65;
}
.contact-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-top: 24px;
  margin-bottom: 8px;
}
.contact-details {
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 8px;
}
.contact-details a { font-weight: 500; }

.contact-map {
  min-height: 320px;
  background: var(--color-border);
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
}
@media (min-width: 900px) {
  .contact-map { min-height: 100%; }
  .contact-map iframe { min-height: 100%; }
}

/* --------------------------------------------
   Mobile
   -------------------------------------------- */
@media (max-width: 768px) {
  .nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--color-charcoal);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  body.menu-open .nav {
    display: flex;
  }
  .header-inner .btn-outline {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .hero-split { min-height: 360px; }
  .section { padding: 56px 0; }
  .block-row .block-content { padding: 24px 20px; }
  .page-main { padding: 40px 0 64px; }
  .cta-section { padding: 48px 24px; }
}
