/* VI Color Theme — derived from logo calligraphy palette (terracotta / warm orange) */
:root {
  --primaryColor: #E8A87C;
  --secondaryColor: #FEF0E6;
  --accentColor: #C23B10;

  --primaryBorder: 1px solid #E8A87C;
  --secondaryBorder: 1px solid #FEF0E6;
  --accentBorder: 1px solid #C23B10;

  --headerColor: #C23B10;
  --headerHoverColor: #D94F1E;
  --headerActiveColor: #C23B10;
  --headerStickyColor: #C23B10;

  --footerBg: #FDF3EC;
  --footerColor: #C23B10;

  --headlineH1LineBg: #C23B10;
  --subTitleH3Color: #C23B10;
  --subTitleH4Color: #C23B10;
  --fieldLabelColor: #C23B10;

  --btnBg: #C23B10;
  --btnHoverBg: #FFFFFF;
  --btnColor: #FFFFFF;
  --btnHoverColor: #C23B10;
  --btnBorderColor: #C23B10;
  --btnHoverBorderColor: #C23B10;

  --btnPrimaryBg: #C23B10;
  --btnPrimaryHoverBg: transparent;
  --btnPrimaryColor: #FFFFFF;
  --btnPrimaryHoverColor: #C23B10;
  --btnPrimaryBorderColor: #C23B10;
  --btnPrimaryHoverBorderColor: #C23B10;
  --btnPrimaryDisabledBg: #E8A87C;

  --btnSecondaryBg: transparent;
  --btnSecondaryHoverBg: #C23B10;
  --btnSecondaryColor: #C23B10;
  --btnSecondaryHoverColor: #FFFFFF;
  --btnSecondaryBorderColor: #C23B10;
  --btnSecondaryHoverBorderColor: #C23B10;
  --btnLinkColor: #C23B10;

  --backToTopBg: #C23B10;
  --backToTopBorderColor: #C23B10;
  --backToTopColor: #ffffff;
}

/* ── Video Hero Banner ── */
.banner-video-hero {
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.banner-video-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.banner-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.banner-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.30) 0%,
    rgba(0,0,0,0.50) 50%,
    rgba(0,0,0,0.60) 100%
  );
  z-index: 1;
}

.banner-video-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 860px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.banner-video-title {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2em;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
  letter-spacing: 0.02em;
}

.banner-video-desc {
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.88);
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  max-width: 640px;
  line-height: 1.7;
}

.banner-video-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

/* Ensure banner buttons are visible over the dark video */
.banner-video-hero .kmb-widget-secondary-btn {
  border-color: #fff !important;
  color: #fff !important;
}
.banner-video-hero .kmb-widget-secondary-btn:hover {
  background: #fff !important;
  color: #C23B10 !important;
}

/* ── Homepage About Us – Discover Our Story button ── */
.about-us .kmb-widget-btn-group {
  margin-top: 1.5rem;
}

/* ── Welcome Section (About Us page) ── */
.welcome-section {
  padding: 0;
}

.welcome-bg-strip {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
}

.welcome-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.welcome-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.30) 60%, rgba(0,0,0,0.1) 100%);
  display: flex;
  align-items: center;
  padding: 2rem 5%;
}

.welcome-bg-text {
  max-width: 600px;
}

.welcome-main-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.welcome-main-tagline {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.85);
  font-style: italic;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.welcome-features-wrap {
  background: #FDF3EC;
  padding: 3.5rem 5%;
}

.welcome-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.welcome-feature-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  border-top: 3px solid #C23B10;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.welcome-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.10);
}

.welcome-feature-icon {
  color: #C23B10;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.welcome-feature-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #1C1C1C;
  margin: 0 0 0.6rem;
  letter-spacing: 0.02em;
}

.welcome-feature-desc {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.93rem;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

.welcome-cta-link {
  color: #C23B10;
  font-weight: 600;
  text-decoration: none;
}

.welcome-cta-link:hover {
  text-decoration: underline;
}

/* ── Our Clients / Quote Section ── */
.clients-section {
  padding: 0;
}

.clients-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 5%;
}

.clients-quote-block {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 3rem 3rem 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  margin-bottom: 3.5rem;
}

.clients-quote-mark {
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 0.6;
  color: #E8A87C;
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  pointer-events: none;
  user-select: none;
}

.clients-quote-text {
  font-family: 'Roboto Serif', serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
  color: #2a2a2a;
  font-style: italic;
  margin: 1rem 0 2rem;
  padding-left: 2rem;
  border: none;
}

.clients-quote-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-left: 2rem;
  border-top: 1px solid #f0e8e0;
  padding-top: 1.25rem;
}

.clients-author-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #C23B10;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.clients-author-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.clients-author-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #1C1C1C;
  letter-spacing: 0.03em;
}

.clients-author-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.82rem;
  color: #888;
}

.clients-logos-label {
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #bbb;
  margin-bottom: 1.5rem;
}

.clients-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3rem;
}

.clients-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.65;
  transition: opacity 0.2s;
}

.clients-logo-item:hover {
  opacity: 1;
}

.clients-logo-item img {
  max-height: 60px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.2s;
}

.clients-logo-item:hover img {
  filter: grayscale(0%);
}

@media (max-width: 640px) {
  .clients-quote-block {
    padding: 2rem 1.5rem 1.5rem;
  }
  .clients-quote-mark {
    font-size: 5rem;
    left: 1rem;
  }
  .clients-quote-text {
    padding-left: 1rem;
  }
  .clients-quote-author {
    padding-left: 1rem;
  }
}
