/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  color: #2c2418;
  background: #fff;
  line-height: 1.7;
}
a { color: #7a5c32; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== NAV ===== */
.bhc-nav {
  background: #fff;
  border-bottom: 1px solid #e2d9ca;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.bhc-nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #1e1710;
  text-decoration: none;
}
.bhc-nav-logo span { color: #7a5c32; }
.bhc-nav-links { display: flex; gap: 28px; align-items: center; }
.bhc-nav-links a {
  font-size: 14px;
  color: #6a5840;
  text-decoration: none;
  transition: color 0.15s;
}
.bhc-nav-links a:hover { color: #1e1710; text-decoration: none; }
.bhc-nav-cta {
  background: #5a3e20;
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none !important;
  transition: background 0.2s;
}
.bhc-nav-cta:hover { background: #3e2a12 !important; }

/* ===== FOOTER ===== */
.bhc-footer {
  background: #1e1710;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.bhc-footer-copy { font-size: 13px; color: #7a6a55; }
.bhc-footer-links { display: flex; gap: 24px; }
.bhc-footer-links a { font-size: 13px; color: #7a6a55; text-decoration: none; }
.bhc-footer-links a:hover { color: #c8b89a; }

/* ===== SHARED COMPONENTS ===== */
.bhc-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7a5c32;
  margin-bottom: 14px;
}
.bhc-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 64px 40px;
}
.bhc-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7a5c32;
  margin-bottom: 10px;
}
.bhc-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 400;
  color: #1e1710;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.bhc-section-sub {
  font-size: 16px;
  color: #6a5840;
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 580px;
}
.bhc-btn {
  display: inline-block;
  background: #5a3e20;
  color: #fff !important;
  padding: 12px 26px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none !important;
  transition: background 0.2s;
}
.bhc-btn:hover { background: #3e2a12; }
.bhc-btn-outline {
  display: inline-block;
  border: 1.5px solid #7a5c32;
  color: #5a3e20 !important;
  padding: 11px 24px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none !important;
  margin-left: 10px;
  transition: background 0.2s;
}
.bhc-btn-outline:hover { background: rgba(90,62,32,0.07); }

/* ===== TRUST BAR ===== */
.bhc-trust {
  background: #2c2418;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.bhc-trust-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #9e8a6e;
  white-space: nowrap;
}
.bhc-trust-items { display: flex; gap: 28px; flex-wrap: wrap; }
.bhc-trust-item { font-size: 13px; color: #c8b89a; font-weight: 500; }

/* ===== HERO ===== */
.bhc-hero {
  background: #f7f3ec;
  border-bottom: 1px solid #e2d9ca;
  padding: 64px 40px 56px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
.bhc-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.22;
  color: #1e1710;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}
.bhc-hero-lead {
  font-size: 17px;
  color: #5a4a35;
  line-height: 1.75;
  margin-bottom: 30px;
}
.bhc-card {
  background: #fff;
  border: 1px solid #e0d5c4;
  border-radius: 12px;
  padding: 26px 24px;
}
.bhc-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid #ede5d8;
  margin-bottom: 18px;
}
.bhc-avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background: #eedfc8;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #5a3e20;
  flex-shrink: 0;
}
.bhc-card-name { font-size: 16px; font-weight: 600; color: #1e1710; }
.bhc-card-role { font-size: 13px; color: #7a6a55; margin-top: 2px; }
.bhc-cred-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.bhc-cred-list li {
  font-size: 13px;
  color: #5a4a35;
  padding-left: 16px;
  position: relative;
  line-height: 1.55;
}
.bhc-cred-list li::before {
  content: '';
  width: 5px; height: 5px;
  background: #a07840;
  border-radius: 50%;
  position: absolute;
  left: 0; top: 7px;
}
.bhc-cred-list strong { color: #2c2418; font-weight: 600; }

/* ===== SERVICES ===== */
.bhc-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.bhc-service-card {
  background: #faf7f2;
  border: 1px solid #e5d9c8;
  border-radius: 10px;
  padding: 22px 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.bhc-service-card:hover {
  border-color: #b89468;
  box-shadow: 0 2px 12px rgba(90,62,32,0.07);
}
.bhc-service-icon { font-size: 22px; margin-bottom: 12px; display: block; }
.bhc-service-card h3 { font-size: 15px; font-weight: 600; color: #1e1710; margin-bottom: 8px; }
.bhc-service-card p { font-size: 13px; color: #6a5840; line-height: 1.65; }

/* ===== SPECIALTIES ===== */
.bhc-specialty-bg {
  background: #f2ece0;
  border-top: 1px solid #e2d4be;
  border-bottom: 1px solid #e2d4be;
}
.bhc-specialty-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.bhc-specialty-card {
  background: #fff;
  border: 1px solid #ddd0ba;
  border-radius: 12px;
  padding: 30px 26px;
}
.bhc-specialty-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 400;
  color: #1e1710;
  margin-bottom: 12px;
}
.bhc-specialty-lead {
  font-size: 15px;
  color: #5a4a35;
  line-height: 1.75;
  margin-bottom: 18px;
  font-style: italic;
}
.bhc-specialty-list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; }
.bhc-specialty-list li {
  font-size: 14px;
  color: #4a3c28;
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}
.bhc-specialty-list li::before { content: '→'; position: absolute; left: 0; color: #a07840; font-size: 13px; }
.bhc-specialty-tag {
  display: inline-block;
  background: #eedfc8;
  color: #5a3e20;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

/* ===== ABOUT ===== */
.bhc-about-grid { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }
.bhc-about-grid p { font-size: 15px; color: #5a4a35; line-height: 1.8; margin-bottom: 16px; }
.bhc-affil-list { display: flex; flex-direction: column; gap: 10px; }
.bhc-affil-item { background: #faf7f2; border: 1px solid #e2d4be; border-radius: 8px; padding: 13px 16px; }
.bhc-affil-name { font-size: 14px; font-weight: 600; color: #2c2418; margin-bottom: 2px; }
.bhc-affil-url { font-size: 12px; color: #7a5c32; }

/* ===== CLIENTS ===== */
.bhc-clients-bg { background: #faf7f2; border-top: 1px solid #e5d9c8; border-bottom: 1px solid #e5d9c8; }
.bhc-clients-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.bhc-client-item { background: #fff; border: 1px solid #e2d4be; border-radius: 8px; padding: 16px 18px; }
.bhc-client-name { font-size: 14px; font-weight: 600; color: #2c2418; display: block; margin-bottom: 3px; }

/* ===== CTA ===== */
.bhc-cta-bg { background: #1e1710; padding: 64px 40px; text-align: center; }
.bhc-cta-bg h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px; font-weight: 400;
  color: #f7f3ec; margin-bottom: 14px;
}
.bhc-cta-bg p { font-size: 16px; color: #a89070; max-width: 480px; margin: 0 auto 32px; line-height: 1.7; }
.bhc-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.bhc-btn-light {
  display: inline-block; background: #f7f3ec; color: #1e1710 !important;
  padding: 12px 28px; border-radius: 6px; font-size: 15px; font-weight: 600;
  text-decoration: none !important; transition: background 0.2s;
}
.bhc-btn-light:hover { background: #eedfc8; }
.bhc-btn-ghost-light {
  display: inline-block; border: 1.5px solid rgba(255,255,255,0.3);
  color: #f7f3ec !important; padding: 11px 26px; border-radius: 6px;
  font-size: 15px; font-weight: 600; text-decoration: none !important; transition: border-color 0.2s;
}
.bhc-btn-ghost-light:hover { border-color: rgba(255,255,255,0.7); }

/* ===== PAGE HERO (inner pages) ===== */
.bhc-page-hero {
  background: #f7f3ec;
  border-bottom: 1px solid #e2d9ca;
  padding: 52px 40px;
  max-width: 1080px;
  margin: 0 auto;
}
.bhc-page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 34px; font-weight: 400;
  color: #1e1710; margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.bhc-page-hero p { font-size: 17px; color: #5a4a35; line-height: 1.7; max-width: 620px; }

/* ===== CONTACT PAGE ===== */
.bhc-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.bhc-contact-card { background: #faf7f2; border: 1px solid #e2d4be; border-radius: 12px; padding: 28px; }
.bhc-contact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 400; color: #1e1710; margin-bottom: 16px;
}
.bhc-contact-row { display: flex; flex-direction: column; gap: 12px; }
.bhc-contact-item { font-size: 15px; color: #4a3c28; }
.bhc-contact-item strong { display: block; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: #9e8a6e; margin-bottom: 2px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .bhc-nav { padding: 0 20px; }
  .bhc-nav-links { display: none; }
  .bhc-hero, .bhc-about-grid, .bhc-specialty-grid, .bhc-contact-grid { grid-template-columns: 1fr; }
  .bhc-hero, .bhc-page-hero { padding: 40px 20px; }
  .bhc-section { padding: 48px 20px; }
  .bhc-services-grid, .bhc-clients-grid { grid-template-columns: 1fr 1fr; }
  .bhc-trust, .bhc-cta-bg, .bhc-footer { padding: 20px; }
  @media (max-width: 480px) {
    .bhc-services-grid, .bhc-clients-grid { grid-template-columns: 1fr; }
  }
}

/* ===== CONTACT FORM ===== */
.bhc-form-wrap {
  margin-top: 40px;
  background: #faf7f2;
  border: 1px solid #e2d4be;
  border-radius: 12px;
  padding: 36px 32px;
}
.bhc-form-heading {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  color: #1e1710;
  margin-bottom: 6px;
}
.bhc-form-sub {
  font-size: 14px;
  color: #7a6a55;
  margin-bottom: 24px;
  line-height: 1.6;
}
.bhc-form { display: flex; flex-direction: column; gap: 16px; }
.bhc-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bhc-form-group { display: flex; flex-direction: column; gap: 5px; }
.bhc-form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #5a4a35;
}
.bhc-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #9e8a6e;
  font-size: 11px;
}
.bhc-form-group input,
.bhc-form-group select,
.bhc-form-group textarea {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  color: #2c2418;
  background: #fff;
  border: 1.5px solid #ddd0ba;
  border-radius: 7px;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  width: 100%;
}
.bhc-form-group input::placeholder,
.bhc-form-group textarea::placeholder { color: #b8a88a; }
.bhc-form-group input:focus,
.bhc-form-group select:focus,
.bhc-form-group textarea:focus {
  border-color: #a07840;
  box-shadow: 0 0 0 3px rgba(160,120,64,0.12);
}
.bhc-form-group select {
  appearance: none;
  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 d='M1 1l5 5 5-5' stroke='%23a07840' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.bhc-form-group textarea { resize: vertical; min-height: 100px; }
.bhc-form .bhc-btn { align-self: flex-start; margin-top: 4px; }

@media (max-width: 560px) {
  .bhc-form-row { grid-template-columns: 1fr; }
  .bhc-form-wrap { padding: 24px 18px; }
}

/* ===== CONTACT PAGE TWO-COLUMN LAYOUT ===== */
.bhc-contact-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.bhc-contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bhc-contact-sidebar .bhc-contact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 400;
  color: #1e1710;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .bhc-contact-layout { grid-template-columns: 1fr; }
}
