/*
Theme Name:   Brighton Handyman
Theme URI:    https://brighton-handyman.co.uk
Description:  Brighton Handyman 2026 — bright, colourful, magazine-style
Author:       AI Handyman
Template:     generatepress
Version:      3.0.0
*/

/* ═══════════════════════════════════════════════════════
   FONTS — Bricolage Grotesque + DM Sans
═══════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wdth,wght@12..96,75..100,200..800&family=DM+Sans:ital,opsz,wght@0,9..40,300..700;1,9..40,300..500&display=swap');

/* ═══════════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════════ */
:root {
  /* Backgrounds */
  --white:     #ffffff;
  --off:       #f9f8f5;
  --cream:     #f0ebe0;
  --cream-2:   #e8e1d2;
  --dark:      #111110;
  --dark-2:    #1c1b18;

  /* Text */
  --ink:       #1a1815;
  --ink-2:     #2e2b26;
  --muted:     #6b6459;
  --light-txt: rgba(255,255,255,0.92);
  --light-muted: rgba(255,255,255,0.62);

  /* Accent — Flame orange */
  --fire:       #f0520a;
  --fire-hover: #c93f06;
  --fire-pale:  #fff3ee;
  --fire-mid:   rgba(240, 82, 10, 0.15);

  /* Borders */
  --border:    #e2ddd5;
  --border-2:  rgba(0,0,0,0.07);

  /* Shadows */
  --sh-sm:  0 2px 8px rgba(0,0,0,0.06);
  --sh:     0 4px 24px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --sh-lg:  0 16px 56px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --sh-xl:  0 32px 80px rgba(0,0,0,0.16), 0 8px 20px rgba(0,0,0,0.08);

  /* Radius */
  --r-sm:  8px;
  --r:     14px;
  --r-lg:  22px;
  --r-xl:  32px;

  /* Max width */
  --max:   1140px;

  /* Type */
  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --body:    "DM Sans", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ═══════════════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: var(--display);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.18rem; font-weight: 700; }
h4 { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
p  { line-height: 1.68; }

/* ═══════════════════════════════════════════════════════
   LAYOUT UTILITIES
═══════════════════════════════════════════════════════ */
.bh-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section wrapper ── */
.bh-section {
  padding: 80px 0;
}
.bh-section--cream   { background: var(--cream); }
.bh-section--off     { background: var(--off); }
.bh-section--white   { background: var(--white); }
.bh-section--dark    { background: var(--dark); color: var(--light-txt); }
.bh-section--contact { background: var(--dark-2); color: var(--light-txt); }

/* ── Section head ── */
.bh-section-head {
  margin-bottom: 48px;
}
.bh-section-head--center {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.bh-section-head h2 { color: var(--ink); }
.bh-section-head--dark h2 { color: #fff; }
.bh-section-head p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-top: 14px;
  max-width: 560px;
}
.bh-section-head--dark p { color: var(--light-muted); }
.bh-section-head--center p { margin-left: auto; margin-right: auto; }

/* ── Label (eyebrow text) ── */
.bh-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 12px;
}
.bh-label::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--fire);
  border-radius: 2px;
}
.bh-label--light { color: rgba(240,82,10,0.9); }

/* ── Rule / divider ── */
.bh-rule {
  display: block;
  width: 36px;
  height: 3px;
  background: var(--fire);
  border-radius: 3px;
  margin: 18px 0;
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════ */
.bh-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1;
  padding: 14px 26px;
  border-radius: 50px;
  border: 2px solid transparent;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
  cursor: pointer;
}
.bh-btn--primary {
  background: var(--fire);
  color: #fff;
  border-color: var(--fire);
}
.bh-btn--primary:hover {
  background: var(--fire-hover);
  border-color: var(--fire-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(240,82,10,0.35);
}
.bh-btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.bh-btn--outline:hover {
  border-color: var(--fire);
  color: var(--fire);
}
.bh-btn--white {
  background: #fff;
  color: var(--fire);
  border-color: #fff;
}
.bh-btn--white:hover {
  background: var(--fire-pale);
  transform: translateY(-1px);
}
.bh-btn--white-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.bh-btn--white-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}
.bh-btn--full { width: 100%; justify-content: center; border-radius: var(--r); }

/* ═══════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════ */
.bh-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.bh-nav.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.bh-nav-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 64px;
}
.bh-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.bh-nav-mark {
  width: 36px;
  height: 36px;
  background: var(--fire);
  color: #fff;
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  flex-shrink: 0;
}
.bh-nav-name {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.bh-nav-sub {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* WP nav menu */
.bh-nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.bh-nav-list li a {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--ink-2);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color .18s, background .18s;
}
.bh-nav-list li a:hover {
  color: var(--fire);
  background: var(--fire-pale);
}
.bh-nav-list li.current-menu-item > a {
  color: var(--fire);
}

.bh-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.bh-nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.bh-nav-phone svg {
  width: 15px;
  height: 15px;
  fill: var(--fire);
}
.bh-nav-phone:hover { color: var(--fire); }

.bh-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 6px;
}
.bh-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.bh-nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bh-nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.bh-nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.bh-nav-mobile {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
}
.bh-nav-mobile.is-open { max-height: 400px; }
.bh-nav-mobile-list { padding: 12px 0; }
.bh-nav-mobile-list li a {
  display: block;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-2);
  border-bottom: 1px solid var(--border-2);
  transition: color .18s;
}
.bh-nav-mobile-list li a:hover { color: var(--fire); }

/* ═══════════════════════════════════════════════════════
   HERO — split layout, white bg, large photo right
═══════════════════════════════════════════════════════ */
.bh-hero {
  background: var(--white);
  padding: 64px 0 72px;
  overflow: hidden;
}

.bh-hero-split {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
}

/* Left: text content */
.bh-hero-content {}

.bh-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fire);
  background: var(--fire-pale);
  padding: 5px 12px 5px 8px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(240,82,10,0.15);
}
.bh-hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--fire);
  border-radius: 50%;
  flex-shrink: 0;
}

.bh-hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 20px;
}
.bh-hero-content h1 em {
  font-style: normal;
  color: var(--fire);
}

.bh-hero-lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}

.bh-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

/* Stats row */
.bh-hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
.bh-hero-stats > div {
  flex: 1;
  padding-right: 20px;
}
.bh-hero-stats > div + div {
  padding-left: 20px;
  border-left: 1px solid var(--border);
}
.bh-hero-stat-num {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.bh-hero-stat-label {
  font-size: 0.74rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Right: photo card */
.bh-hero-photo {
  position: relative;
}
.bh-hero-photo img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
}

/* Floating badge on photo */
.bh-hero-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: #fff;
  border-radius: var(--r);
  padding: 14px 18px;
  box-shadow: var(--sh-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}
.bh-hero-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--fire);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.bh-hero-badge-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.bh-hero-badge-text span {
  font-size: 0.74rem;
  color: var(--muted);
}

/* Hero anim classes */
.bh-anim-1, .bh-anim-2, .bh-anim-3,
.bh-anim-4, .bh-anim-5, .bh-anim-6 {
  animation: bh-fade-up .55s ease both;
}
.bh-anim-1 { animation-delay: .05s; }
.bh-anim-2 { animation-delay: .12s; }
.bh-anim-3 { animation-delay: .20s; }
.bh-anim-4 { animation-delay: .28s; }
.bh-anim-5 { animation-delay: .36s; }
.bh-anim-6 { animation-delay: .44s; }

@keyframes bh-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════
   SERVICES — photo card grid
═══════════════════════════════════════════════════════ */
.bh-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bh-svc-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transition: transform .28s cubic-bezier(.22,.68,0,1.2), box-shadow .28s;
}
.bh-svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}

.bh-svc-photo {
  height: 200px;
  overflow: hidden;
  background: var(--cream);
  position: relative;
}
.bh-svc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}
.bh-svc-card:hover .bh-svc-photo img {
  transform: scale(1.07);
}

/* Colour bar at the top of photo on hover */
.bh-svc-photo::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--fire);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.bh-svc-card:hover .bh-svc-photo::after {
  transform: scaleX(1);
}

.bh-svc-body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.bh-svc-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}
.bh-svc-body p {
  font-size: 0.86rem;
  line-height: 1.62;
  color: var(--muted);
  flex: 1;
  margin-bottom: 16px;
}
.bh-svc-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--fire);
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s;
}
.bh-svc-card:hover .bh-svc-link {
  gap: 8px;
}

/* ═══════════════════════════════════════════════════════
   AREAS
═══════════════════════════════════════════════════════ */
.bh-areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.bh-area-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  padding: 10px 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  text-decoration: none;
  transition: border-color .2s, background .2s, transform .18s;
}
.bh-area-pill:hover {
  border-color: var(--fire);
  background: var(--fire-pale);
  transform: translateY(-2px);
}
.bh-area-pill strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.bh-area-pill span {
  font-size: 0.72rem;
  color: var(--muted);
}
.bh-area-pill:hover strong { color: var(--fire); }

.bh-areas-note {
  font-size: 0.88rem;
  color: var(--muted);
}
.bh-areas-note a {
  color: var(--fire);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ═══════════════════════════════════════════════════════
   TRUST
═══════════════════════════════════════════════════════ */
.bh-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.bh-trust-item {
  padding: 40px 36px;
  border-right: 1.5px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background .25s;
}
.bh-trust-item:last-child { border-right: none; }
.bh-trust-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--fire);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .3s ease;
}
.bh-trust-item:hover::before { transform: scaleY(1); }
.bh-trust-item:hover { background: var(--off); }

.bh-trust-num {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--fire);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.bh-trust-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}
.bh-trust-item p {
  font-size: 0.86rem;
  line-height: 1.64;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════════════════ */
.bh-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bh-review-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px 28px 26px;
  box-shadow: var(--sh);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .25s, box-shadow .25s;
}
.bh-review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-lg);
}
.bh-review-stars {
  color: #ffa928;
  font-size: 0.9rem;
  letter-spacing: 1px;
}
.bh-review-text {
  font-size: 0.9rem;
  line-height: 1.66;
  color: var(--ink-2);
  flex: 1;
  font-style: italic;
}
.bh-review-text::before { content: '\201C'; }
.bh-review-text::after  { content: '\201D'; }
.bh-review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 8px;
  border-top: 1px solid var(--border-2);
}
.bh-review-name {
  font-weight: 700;
  font-size: 0.86rem;
}
.bh-review-source {
  font-size: 0.72rem;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════════
   FAQ — accordion
═══════════════════════════════════════════════════════ */
.bh-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  max-width: 760px;
  margin: 0 auto;
}
.bh-faq-list details {
  border-bottom: 1.5px solid var(--border);
}
.bh-faq-list details:last-child { border-bottom: none; }

.bh-faq-list summary {
  padding: 20px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink);
  transition: background .18s, color .18s;
  user-select: none;
}
.bh-faq-list summary::-webkit-details-marker { display: none; }
.bh-faq-list summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--fire);
  flex-shrink: 0;
  transition: transform .2s;
}
.bh-faq-list details[open] summary::after { transform: rotate(45deg); }
.bh-faq-list summary:hover { background: var(--off); color: var(--fire); }
.bh-faq-list details[open] summary { background: var(--off); color: var(--fire); }

.bh-faq-body {
  padding: 0 24px 20px;
  font-size: 0.88rem;
  line-height: 1.72;
  color: var(--muted);
}
.bh-faq-body a {
  color: var(--fire);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ═══════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════ */
.bh-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}

/* Info panel (left) */
.bh-contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  margin-bottom: 8px;
}
.bh-contact-info .bh-rule {
  margin: 20px 0;
  background: var(--fire);
}
.bh-contact-info > p {
  font-size: 0.95rem;
  color: var(--light-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.bh-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.bh-contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
}
.bh-contact-list li svg {
  width: 18px;
  height: 18px;
  fill: var(--fire);
  flex-shrink: 0;
}
.bh-contact-list li a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-weight: 500;
  transition: color .18s;
}
.bh-contact-list li a:hover { color: var(--fire); }

.bh-contact-promise {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Form panel (right) */
.bh-contact-form-wrap {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 36px 36px 40px;
  box-shadow: var(--sh-xl);
}

.bh-form-row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.bh-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.bh-form-field:last-of-type { margin-bottom: 0; }
.bh-form-field label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  text-transform: uppercase;
}
.bh-form-field label span { color: var(--fire); }
.bh-form-field input,
.bh-form-field select,
.bh-form-field textarea {
  font-family: var(--body);
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 11px 14px;
  width: 100%;
  transition: border-color .2s, background .2s, box-shadow .2s;
  outline: none;
  appearance: none;
}
.bh-form-field input:focus,
.bh-form-field select:focus,
.bh-form-field textarea:focus {
  border-color: var(--fire);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(240,82,10,0.12);
}
.bh-form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b6459' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.bh-form-field textarea { resize: vertical; min-height: 100px; }
.bh-form-hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; height: 0; overflow: hidden; }

.bh-form-success {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.bh-form-success h3 { font-size: 1.4rem; color: var(--ink); }
.bh-form-success p { font-size: 0.92rem; color: var(--muted); }
.bh-form-error {
  background: #fff0ed;
  border: 1px solid rgba(240,82,10,0.3);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-size: 0.86rem;
  color: #b83500;
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════════════════════
   CTA STRIP
═══════════════════════════════════════════════════════ */
.bh-cta-strip {
  background: var(--fire);
  border-radius: var(--r-xl);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 24px 0;
}
.bh-cta-strip-text h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 6px;
}
.bh-cta-strip-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
}
.bh-cta-strip-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.bh-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.bh-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.bh-footer-col {}
.bh-footer-col h4 {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
}

.bh-footer-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.bh-footer-logo {
  width: 40px;
  height: 40px;
  background: var(--fire);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.bh-footer-brand-name {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.bh-footer-brand-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.42);
}
.bh-footer-desc {
  font-size: 0.84rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  max-width: 300px;
}
.bh-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bh-footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color .18s;
}
.bh-footer-contact a:hover { color: var(--fire); }
.bh-footer-contact svg { fill: var(--fire); flex-shrink: 0; }

.bh-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bh-footer-links li a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.58);
  text-decoration: none;
  transition: color .18s;
}
.bh-footer-links li a:hover { color: var(--fire); }

.bh-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0 24px;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.32);
  flex-wrap: wrap;
}
.bh-footer-bottom a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color .18s;
}
.bh-footer-bottom a:hover { color: var(--fire); }

/* ═══════════════════════════════════════════════════════
   MOBILE STICKY BAR
═══════════════════════════════════════════════════════ */
.bh-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}

/* ═══════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
═══════════════════════════════════════════════════════ */
.bh-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.bh-revealed {
  opacity: 1;
  transform: translateY(0);
}
.bh-reveal-delay-1 { transition-delay: .08s; }
.bh-reveal-delay-2 { transition-delay: .16s; }
.bh-reveal-delay-3 { transition-delay: .24s; }
.bh-reveal-delay-4 { transition-delay: .32s; }
.bh-reveal-delay-5 { transition-delay: .40s; }
.bh-reveal-delay-6 { transition-delay: .48s; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤900px)
═══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .bh-section { padding: 60px 0; }

  /* Nav */
  .bh-nav-list { display: none; }
  .bh-nav-toggle { display: flex; }
  .bh-nav-mobile { display: block; }
  .bh-nav-phone { display: none; }

  /* Hero */
  .bh-hero-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .bh-hero-photo img { height: 380px; }
  .bh-hero-content h1 { font-size: clamp(2.4rem, 7vw, 3.6rem); }

  /* Services */
  .bh-services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Trust */
  .bh-trust-grid { grid-template-columns: 1fr; }
  .bh-trust-item { border-right: none; border-bottom: 1.5px solid var(--border); }
  .bh-trust-item:last-child { border-bottom: none; }

  /* Reviews */
  .bh-reviews-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Contact */
  .bh-contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .bh-contact-form-wrap { padding: 28px 24px 32px; }

  /* CTA strip */
  .bh-cta-strip { flex-direction: column; text-align: center; padding: 32px 28px; margin: 0 16px 0; }

  /* Footer */
  .bh-footer-grid { grid-template-columns: 1fr 1fr; }

  /* Mobile bar */
  .bh-mobile-bar { display: flex; }
  body { padding-bottom: 80px; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤600px)
═══════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .bh-section { padding: 48px 0; }
  .bh-wrap { padding: 0 16px; }

  /* Hero */
  .bh-hero { padding: 40px 0 52px; }
  .bh-hero-photo img { height: 280px; }
  .bh-hero-actions { flex-direction: column; }
  .bh-hero-actions .bh-btn { width: 100%; justify-content: center; }
  .bh-hero-stats { flex-direction: row; gap: 0; }
  .bh-hero-stat-num { font-size: 1.15rem; }

  /* Services */
  .bh-services-grid { grid-template-columns: 1fr; }
  .bh-svc-photo { height: 180px; }

  /* Form */
  .bh-form-row--2 { grid-template-columns: 1fr; }

  /* CTA strip */
  .bh-cta-strip { margin: 0; border-radius: 0; }
  .bh-cta-strip-actions { flex-direction: column; width: 100%; }
  .bh-cta-strip-actions .bh-btn { width: 100%; justify-content: center; }

  /* Footer */
  .bh-footer-grid { grid-template-columns: 1fr; }
  .bh-footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }

  /* Hero badge */
  .bh-hero-badge { left: 12px; bottom: 12px; padding: 10px 14px; }
  .bh-hero-badge-icon { width: 32px; height: 32px; font-size: 1rem; }
}

/* ═══════════════════════════════════════════════════════
   GENERATEPRESS OVERRIDES — hide default elements
═══════════════════════════════════════════════════════ */
.site-header, .site-footer, #page { display: block; }
.entry-header, .entry-title { display: none; }
.site-main { padding: 0; }
.inside-article { padding: 0; }
.page-hero-section { display: none; }
