/* ==========================================================================
   Business Support — page-specific section styles
   (loaded AFTER css/site.css; shared chrome/hero/cta classes live there)
   ========================================================================== */

/* ---------- Dark parallax hero ---------- */
.bs-hero {
  position: relative;
  overflow: hidden;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  background: #191915;
  color: #F7F5F0;
}
.bs-hero__img {
  position: absolute;
  top: -6%;
  left: 0;
  width: 100%;
  height: 112%;
  object-fit: cover;
  display: block;
  opacity: .58;
}
.bs-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,16,11,.42) 0%, rgba(20,16,11,.30) 32%, rgba(20,16,11,.62) 68%, rgba(20,16,11,.90) 100%);
}
@media (max-width:500px){
  .bs-hero__overlay { background: linear-gradient(180deg, rgba(20,16,11,.46) 0%, rgba(20,16,11,.34) 30%, rgba(20,16,11,.70) 62%, rgba(20,16,11,.92) 100%); }
}
.bs-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 150px clamp(22px, 5vw, 32px) clamp(46px, 7vh, 72px);
}
.bs-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #EAD7AE;
  text-shadow: 0 1px 14px rgba(15,12,8,.75);
}
.bs-hero__eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #C6A871;
  display: inline-block;
}
.bs-hero__title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(40px, 6.2vw, 86px);
  line-height: 1.0;
  letter-spacing: -0.015em;
  margin: 22px 0 0;
  max-width: 15ch;
  text-shadow: 0 2px 22px rgba(15,12,8,.55), 0 1px 4px rgba(15,12,8,.5);
}
.bs-hero__title em {
  font-style: italic; color: #D8BE8A;
  text-shadow: 0 2px 18px rgba(15,12,8,.7), 0 1px 3px rgba(15,12,8,.6);
}

/* ---------- Intro ---------- */
.bs-intro {
  padding: clamp(64px, 10vh, 110px) clamp(22px, 5vw, 32px) clamp(20px, 3vh, 32px);
}
.bs-intro__text {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.7vw, 32px);
  line-height: 1.4;
  color: #3a3830;
  transition-duration: 1s;
}

/* ---------- What we handle ---------- */
.bs-handle {
  padding: clamp(48px, 7vh, 84px) clamp(22px, 5vw, 32px) clamp(72px, 11vh, 128px);
}
.bs-handle__inner { max-width: 1140px; margin: 0 auto; }
.bs-handle__head {
  border-bottom: 1px solid #D8D2C6;
  padding-bottom: 18px;
  margin-bottom: 46px;
  transition-duration: 1s;
}
.bs-handle__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #9C7B47;
}
.bs-handle__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(30px, 4vw, 56px);
}
.bs-handle__card { transition-duration: 1s; }
.bs-handle__card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 25px;
}
.bs-handle__card p {
  color: #56544C;
  font-size: 15.5px;
  margin-top: 10px;
  line-height: 1.7;
}
