:root {
  --ht-primary: #df2f38;
  --ht-primary-dark: #b61f2a;
  --ht-ink: #131b22;
  --ht-soft: #fff5f6;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1f2933;
}

h1,
h2,
.navbar-brand {
  font-family: "Sacramento", cursive;
  letter-spacing: 0.01em;
}

h1,
h2 {
  line-height: 1.08;
}

.py-lg-6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.brand-logo {
  height: 52px;
  width: auto;
}

.text-primary,
.navbar-brand {
  color: var(--ht-primary) !important;
}

.nav-link {
  color: var(--ht-ink);
  font-weight: 700;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--ht-primary);
}

.btn-primary {
  background-color: var(--ht-primary);
  border-color: var(--ht-primary);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--ht-primary-dark);
  border-color: var(--ht-primary-dark);
}

.btn-outline-primary {
  color: var(--ht-primary);
  border-color: var(--ht-primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: var(--ht-primary);
  border-color: var(--ht-primary);
}

.hero-section {
  background: linear-gradient(180deg, var(--ht-soft) 0%, #ffffff 100%);
}

.feature-card,
.step-card,
.card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover,
.step-card:hover,
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.8rem 1.5rem rgba(223, 47, 56, 0.14);
}

.step-number {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ffe6e8;
  color: var(--ht-primary-dark);
  font-weight: 700;
}

.cta-panel {
  background: linear-gradient(135deg, var(--ht-primary-dark) 0%, var(--ht-primary) 100%);
  color: #fff;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  color: var(--ht-ink);
}

.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.social-link:hover,
.social-link:focus {
  color: var(--ht-primary);
}

.team-photo {
  height: 280px;
  object-fit: cover;
}

.gallery-tile {
  min-height: 180px;
  display: flex;
  align-items: end;
  padding: 1rem;
  color: #fff;
  font-weight: 700;
  box-shadow: inset 0 -70px 80px rgba(0, 0, 0, 0.25);
}

.gallery-gradient-1 {
  background: linear-gradient(135deg, #9ec970, #4f7a2d);
}

.gallery-gradient-2 {
  background: linear-gradient(135deg, #7f8d99, #3b4853);
}

.gallery-gradient-3 {
  background: linear-gradient(135deg, #84a9d9, #3f5f94);
}

.gallery-gradient-4 {
  background: linear-gradient(135deg, #bcc7d2, #6c7a86);
}

.gallery-gradient-5 {
  background: linear-gradient(135deg, #88bc6b, #446a2f);
}

.gallery-gradient-6 {
  background: linear-gradient(135deg, #67817a, #334740);
}

@media (max-width: 991px) {
  .gallery-tile {
    min-height: 150px;
  }
}

@media (max-width: 576px) {
  .brand-logo {
    height: 40px;
  }

  h1,
  h2 {
    line-height: 1.14;
  }
}
