:root {
  --bs-primary: #2b1d14;
  --bs-warning: #d9863b;
  --oak: #8c5a34;
  --sand: #f7f2eb;
  --ink: #181411;
}

body {
  background:
    linear-gradient(180deg, #f5f1eb 0%, #efe8de 100%);
  color: var(--ink);
}

.hero-bold {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(217, 134, 59, 0.2), transparent 28%),
    linear-gradient(140deg, rgba(0, 0, 0, 0.78), rgba(19, 14, 10, 0.62)),
    linear-gradient(130deg, #2b1d14, #111827);
}

.hero-bold::after {
  content: "";
  position: absolute;
  inset: auto -10% -18% auto;
  width: 420px;
  height: 420px;
  background: linear-gradient(135deg, rgba(217, 134, 59, 0.18), rgba(255,255,255,0.04));
  transform: rotate(18deg);
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-bold .container {
  position: relative;
  z-index: 1;
}

.hero-bold .fw-black {
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.96;
}

.brand-pill {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(8px);
}

.hero-media {
  transform: rotate(-1.5deg);
}

.hero-media img {
  width: 100%;
  min-height: 380px;
  max-height: 560px;
  object-fit: cover;
  border-radius: 1.2rem;
  border: 3px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.hero-stats {
  margin-bottom: 1.1rem;
}

.stat-card {
  height: 100%;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.stat-card strong {
  display: block;
  font-size: 0.92rem;
  color: #fff;
}

.stat-card span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.4;
}

.image-attribution {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.74);
}

.image-attribution a {
  color: #fff;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(43, 29, 20, 0.08);
  color: var(--bs-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
}

.service-tile {
  height: 100%;
  border: 0;
  border-radius: 1.15rem;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 18px 40px rgba(37, 24, 17, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(37, 24, 17, 0.14);
}

.about-bold {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.65), rgba(250,245,238,0.95));
  border-top: 1px solid rgba(43, 29, 20, 0.06);
  border-bottom: 1px solid rgba(43, 29, 20, 0.06);
}

.quote-panel {
  padding: 2rem;
  border-radius: 1.2rem;
  background: linear-gradient(160deg, #2b1d14, #4a2d1c);
  color: #fff5ea;
  box-shadow: 0 24px 50px rgba(24, 16, 10, 0.22);
  font-size: 1.1rem;
  line-height: 1.7;
}

.process-strip {
  background: linear-gradient(180deg, rgba(43,29,20,0.04), rgba(43,29,20,0.08));
}

.process-step {
  height: 100%;
  padding: 1.2rem 1rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(43,29,20,0.08);
}

.process-step span {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--oak);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.process-step strong {
  display: block;
  margin-bottom: 0.4rem;
}

.process-step p {
  margin: 0;
  color: #5b5148;
  font-size: 0.92rem;
}

.contact-panel {
  border-radius: 1.2rem;
  background: linear-gradient(180deg, #2b1d14, #1f2937);
  color: #fff;
  box-shadow: 0 22px 44px rgba(0,0,0,0.18);
}

.contact-card {
  border-radius: 1.2rem;
  background: rgba(255,255,255,0.92);
}

footer {
  background: rgba(255,255,255,0.56);
}

@media (max-width: 991px) {
  .hero-bold .fw-black {
    line-height: 1.02;
  }

  .hero-media {
    transform: none;
  }
}

@media (max-width: 767px) {
  .hero-media img {
    min-height: 280px;
  }

  .stat-card {
    min-height: 100%;
  }
}

