/* ===== GOOGLE FONT ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;900&display=swap');

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red: #c11f2f;
  --red2: #bb1223;
  --navy: #1a1a2e;
  --cream: #fdf9f5;
  --border: rgba(0, 0, 0, 0.07);
  --text: #3a3a4a;
  --muted: #7a7a8a;
  --orange: #c11f2f;
  --orange2: #bb1223;
  --navy: #1a1a2e;
  --border: rgba(0, 0, 0, 0.07);
}

body {
  font-family: 'Inter', sans-serif;
  background: #FCF7F9;
  color: #3B373E;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

span.footer-made {
  padding-right: 35px;
}

.brandaid-footer {
  padding: 0 !important;
}

span.footer-made {
  padding-right: 35px;
}

ul.nav-links-row {
  margin-bottom: 0 !important;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav.scrolled {
  background: #fff;
  border-bottom: 1px solid rgba(230, 209, 204, 0.5);
  z-index: 11111;
  height: 72px
}

a.nav-logo-h {
  display: flex;
  align-items: center;
  height: 100%;
  line-height: 0
}

a.nav-logo-h img {
  height: 90px;
  width: auto;
  display: block;
  transition: height 0.2s ease
}

.nav.scrolled a.nav-logo-h img {
  height: 62px
}

.nav-links-row {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none
}

.nav-links-row a {
  display: block;
  padding: 6px 13px;
  font-size: 13.5px;
  font-weight: 400;
  text-decoration: none;
  color: #555;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s
}

.nav-links-row a:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--navy)
}

.nav-links-row a.active {
  font-weight: 600;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px
}

.nav-cta-btn {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  background: var(--red);
  border: none;
  cursor: pointer;
  height: 40px;
  padding: 0 22px;
  border-radius: 8px;
  transition: background 0.15s, transform 0.12s;
  box-shadow: 0 3px 14px rgba(193, 31, 47, 0.28)
}

.nav-cta-btn:hover {
  background: var(--red2);
  transform: translateY(-1px)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.22s ease
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
  opacity: 0
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg)
}

.mobile-drawer {
  display: none;
  position: fixed;
  top: 96px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px 20px;
  z-index: 99;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none
}

.mobile-drawer.open {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all
}

.mobile-drawer a {
  display: block;
  padding: 13px 0;
  font-size: 15px;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--border)
}

.mobile-drawer .mob-cta {
  width: 100%;
  margin-top: 16px;
  height: 48px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer
}

.phil-text-left {
  display: block;
}

/* ========================= SHARED SECTION HEADING SYSTEM ========================= */
.section-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c11f2f;
  margin-bottom: 14px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #2F2C30;
  margin-bottom: 18px;
}

.section-sub {
  font-size: 16px;
  color: #8E8A90;
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto;
}

.title-orange {
  color: #c11f2f;
}

/* ========================= HERO ========================= */
.hero-section,
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 46px;
  min-height: 420px;
  background: linear-gradient(180deg, #fff 0%, #fcf7f5 100%);
}

.page-hero--simple {
  background: linear-gradient(180deg, #fff 0%, #fcf7f5 100%);
}

.page-hero-wrap,
.hero-section {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: auto;
  padding: 0 22px;
}

.hero-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.hero-row--split {
  align-items: flex-start;
}

.hero-row .hero-left {
  flex: 1 1 520px;
  max-width: 720px;
}

.hero-right {
  flex: 0 0 380px;
  width: 100%;
  max-width: 380px;
}

.page-hero-content,
.hero-left {
  max-width: 720px;
}

.hero-title-1 {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 16px;
}

.hero-title-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-title-plain,
.hero-title-orange {
  font-size: 36px;
}

.hero-title-orange {
  font-weight: 700;
  color: var(--red);
}

.page-hero::after,
.search-hero::after,
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(193, 31, 47, 0.1), transparent 24%),
    radial-gradient(circle at bottom right, rgba(193, 31, 47, 0.06), transparent 22%);
  pointer-events: none;
}

.page-hero-wrap,
.hero-section {
  position: relative;
  z-index: 1;
}

.hero-desc {
  max-width: 680px;
  font-size: 17px;
  color: #777278;
  line-height: 1.7;
  margin-bottom: 24px;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.btn-primary {
  padding: 12px 28px;
}

.btn-secondary {
  padding: 12px 28px;
  color: var(--navy);
  background: rgba(193, 31, 47, 0.06);
  border: 1px solid rgba(193, 31, 47, 0.18);
}

.btn {
  padding: 12px 24px;
}

.hero-card {
  background: var(--surface);
  border: 1px solid rgba(193, 31, 47, 0.12);
  border-radius: 24px;
  padding: 24px 22px;
  box-shadow: 0 16px 32px rgba(33, 37, 59, 0.08);
  max-width: 100%;
}

.hero-card--split {
  padding: 32px 28px;
}

.hero-card h2 {
  font-size: 48px;
  margin-bottom: 12px;
}

.hero-card-type {
  display: inline-block;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--red);
  margin-bottom: 10px;
}

.hero-desc {
  font-size: 17px;
  color: #777278;
  max-width: 720px;
  line-height: 1.75;
  margin-bottom: 28px;
  margin-top: 16px;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn-start {
  background: #c11f2f;
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: .25s;
}

.btn-start:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(238, 93, 40, .35);
}

.hero-img-wrapper {
  position: relative;
  display: inline-block;
}

.hero-main-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
  animation: heroFloat 6s ease-in-out infinite;
  display: block;
}

.overlay-brandaid-logo {
  position: absolute;
  top: 40px;
  left: 60px;
  width: 120px !important;
  height: auto;
  animation: logoFloat 5s ease-in-out infinite;
  z-index: 3;
}

.ui-card {
  position: absolute;
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.ui-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card1 {
  width: 180px;
  height: 110px;
  left: 40px;
  bottom: 80px;
  animation: floatCard1 5s ease-in-out infinite;
}

.card2 {
  width: 200px;
  height: 120px;
  right: 80px;
  top: 90px;
  animation: floatCard2 6s ease-in-out infinite;
}

.card3 {
  width: 90px;
  height: 70px;
  right: 30px;
  bottom: 120px;
  animation: floatCard3 4.5s ease-in-out infinite;
}

.card4 {
  width: 100px;
  height: 70px;
  right: 140px;
  bottom: 60px;
  animation: floatCard4 5.5s ease-in-out infinite;
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-15px)
  }
}

/* PAGE & SEARCH HERO UTILS */
.page-hero-content {
  max-width: 760px;
}

.breadcrumb-wrap {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: #5e5a62;
}

/* Show normal cursor inside modal */
#contactModal,
#contactModal *,
.modal,
.modal * {
  cursor: auto !important;
}

/* Text cursor */
#contactModal input,
#contactModal textarea {
  cursor: text !important;
}

/* Pointer cursor */
#contactModal button,
#contactModal select,
#contactModal a,
#contactModal .close-btn,
#contactModal .modal-close {
  cursor: pointer !important;
}

.other-event-bottom-sec {
  text-align: center;
  font-size: 18px;
}

.breadcrumb-wrap a {
  color: var(--navy);
  text-decoration: none;
}

.breadcrumb-wrap strong {
  color: #1f1d22;
}

.search-hero {
  background: linear-gradient(180deg, #fff 0%, #ffe9ee 25%, #f9eef0 100%);
}

.search-results-layout {
  padding: 90px 0 110px;
}

.search-results-intro {
  margin-bottom: 42px;
  padding: 26px 28px;
  border-radius: 28px;
  background: rgba(255, 243, 245, 0.92);
  border: 1px solid rgba(193, 31, 47, 0.12);
}

.search-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 30px;
}

.search-result-card {
  background: #ffffff;
  padding: 38px 34px;
  border-radius: 28px;
  border: 1px solid rgba(193, 31, 47, 0.12);
  box-shadow: 0 22px 44px rgba(33, 37, 59, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
  min-height: 270px;
}

.search-result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 54px rgba(33, 37, 59, 0.10);
}

.search-result-card h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}

.search-result-card .entry-summary {
  flex: 1 1 auto;
}

.search-card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 700;
}

.search-pagination {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

.search-result-card h2 a {
  color: var(--navy);
}

.search-result-card h2 a:hover {
  color: var(--red);
}

.entry-summary {
  margin-bottom: 22px;
  color: #5e5a62;
  line-height: 1.85;
}

.search-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 700;
}

.search-card-link:hover {
  text-decoration: underline;
}

.search-pagination {
  margin-top: 28px;
  display: flex;
  justify-content: flex-end;
}

.no-results--search {
  max-width: 700px;
  margin: 0 auto;
  padding: 34px 30px;
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid rgba(193, 31, 47, 0.12);
  box-shadow: 0 16px 34px rgba(33, 37, 59, 0.06);
  text-align: center;
}

.no-results--search h2 {
  font-size: 30px;
  margin-bottom: 16px;
}

.no-results--search p {
  margin-bottom: 24px;
  color: #5e5a62;
}

.search-fallback {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 30px 28px;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(193, 31, 47, 0.12);
  box-shadow: 0 14px 26px rgba(22, 25, 40, 0.05);
}

.search-fallback h2 {
  font-size: 28px;
  margin-bottom: 18px;
}

.hero-search-form,
.search-form {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.search-field {
  flex: 1 1 260px;
  min-width: 200px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 15px;
  color: #2f2c30;
  background: #ffffff;
}

.search-submit,
.hero-search-form .search-submit {
  min-width: 160px;
  padding: 14px 24px;
  border-radius: 14px;
  border: none;
  background: var(--red);
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.search-submit:hover,
.hero-search-form .search-submit:hover {
  background: #a11727;
  transform: translateY(-1px);
}

.search-suggestions {
  margin-top: 24px;
  text-align: left;
}

.search-suggestions span {
  display: block;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 700;
  color: #3f3b45;
}

.search-suggestions ul {
  list-style: disc;
  margin: 0;
  padding-left: 24px;
  color: #5e5a62;
  line-height: 1.8;
}

.search-form {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.search-field {
  flex: 1 1 320px;
  min-width: 220px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 15px;
  color: #2f2c30;
}

.search-submit {
  min-width: 150px;
}

.entry-page .entry-content {
  line-height: 1.8;
  color: #4f4b57;
}

.page-content {
  padding: 48px 0 72px;
}

.page-content--wide {
  padding: 72px 0 120px;
}

.hero-section--soft,
.page-hero--soft {
  background: linear-gradient(180deg, #fff 0%, #fcf7f5 58%, #f6eef0 100%);
}

.search-hero--full {
  padding-bottom: 48px;
}

.search-results-intro {
  margin-bottom: 28px;
  padding: 20px 18px;
  border-radius: 22px;
  background: rgba(193, 31, 47, 0.04);
  border: 1px solid rgba(193, 31, 47, 0.10);
}

.search-results-intro p {
  margin: 0;
  color: #3f3b45;
  line-height: 1.8;
}

.btn-secondary:hover,
.btn-primary:hover,
.btn:hover {
  opacity: 0.94;
}

.error-page {
  padding-top: 80px;
}

/* .hero-section--slim {
  padding-top: 90px;
} */

.hero-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px 26px;
  max-width: 100%;
}

.hero-card-type {
  display: inline-block;
  margin-bottom: 12px;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--red);
}

.hero-card h2 {
  font-size: 46px;
  margin: 0 0 14px;
  color: var(--navy);
}

.hero-card p {
  color: #55575f;
  line-height: 1.75;
  margin-bottom: 18px;
}

@keyframes logoFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

@keyframes floatCard1 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg)
  }

  33% {
    transform: translateY(-10px) rotate(1deg)
  }

  66% {
    transform: translateY(-5px) rotate(-0.5deg)
  }
}

@keyframes floatCard2 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg)
  }

  40% {
    transform: translateY(-12px) rotate(-1deg)
  }

  70% {
    transform: translateY(-6px) rotate(0.5deg)
  }
}

@keyframes floatCard3 {

  0%,
  100% {
    transform: translateY(0) scale(1)
  }

  50% {
    transform: translateY(-8px) scale(1.02)
  }
}

@keyframes floatCard4 {

  0%,
  100% {
    transform: translateY(0) scale(1)
  }

  45% {
    transform: translateY(-9px) scale(1.03)
  }
}

/* ========================= REVEAL ANIMATION ========================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

.delay-6 {
  transition-delay: 0.6s;
}

.card-animate {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.card-animate.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.card-animate:nth-child(1) {
  transition-delay: 0.05s
}

.card-animate:nth-child(2) {
  transition-delay: 0.15s
}

.card-animate:nth-child(3) {
  transition-delay: 0.25s
}

.card-animate:nth-child(4) {
  transition-delay: 0.35s
}

/* ========================= ABOUT ========================= */
.about-section {
  padding: 110px 0 80px;
  text-align: center;
}

.about-headline {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-headline-orange {
  color: #c11f2f;
}

.about-text {
  font-size: 18px;
  color: #777;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 900px;
  margin: 40px auto 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  padding: 20px 24px;
}

.feature-icon {
  width: 38px;
  flex-shrink: 0;
}

.feature-label {
  text-align: left;
}

/* ========================= CULTURE SECTION ========================= */
.culture-section {
  padding: 70px 0 50px;
  text-align: center;
}

.culture-header {
  margin-bottom: 50px;
}

.culture-grid,
.community-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.culture-card,
.community-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.culture-card img,
.community-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center top;
  display: block;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.culture-card:hover img,
.community-card:hover img {
  transform: scale(1.05);
}

.culture-card:hover,
.community-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, .10);
}

.culture-card h4,
.community-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 14px 15px 6px;
  text-align: center;
  color: #2F2C30;
}

.culture-card p,
.community-card p {
  font-size: 13px;
  color: #777;
  padding: 0 15px 20px;
  text-align: center;
  margin: 0;
  flex: 1;
  line-height: 1.5;
}

/* ========================= COMMUNITY SECTION ========================= */
.community-section {
  padding: 70px 0 50px;
  text-align: center;
}

.community-header {
  margin-bottom: 50px;
}

/* ========================= OUR PHILOSOPHY ========================= */
.philosophy-section {
  background: #fff;
  padding: 90px 24px 100px;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.philosophy-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.phil-header-center {
  text-align: center;
  margin-bottom: 64px;
}

.phil-eyebrow-center {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c11f2f;
  margin-bottom: 12px;
}

.phil-title-center {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #2F2C30;
  margin-bottom: 10px;
  line-height: 1.2;
}

.phil-title-center span {
  color: #c11f2f;
}

.phil-sub-center {
  font-size: 15px;
  color: #8E8A90;
  font-style: italic;
}

.phil-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.phil-text-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.phil-left-heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #2F2C30;
  margin-bottom: 18px;
}

.phil-left-heading span {
  color: #c11f2f;
}

.phil-left-desc {
  font-size: 15px;
  color: #8E8A90;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 420px;
}

.phil-left-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phil-left-perks li {
  font-size: 15px;
  font-weight: 500;
  color: #3B373E;
}

.phil-diagram-wrap {
  width: 100%;
  position: relative;
}

.phil-diagram-wrap svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

@keyframes spin-dash {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

.spin-circle {
  transform-origin: 240px 218px;
  animation: spin-dash 12s linear infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: 0.12
  }

  50% {
    opacity: 0.28
  }
}

.center-glow {
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes arrow-pulse {

  0%,
  100% {
    opacity: 0.3
  }

  50% {
    opacity: 0.8
  }
}

.arrow-line {
  animation: arrow-pulse 2.5s ease-in-out infinite;
}

@keyframes leaf-breathe {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.12)
  }
}

.leaf-icon {
  transform-origin: 240px 218px;
  animation: leaf-breathe 3s ease-in-out infinite;
}

/* ========================= BRAND SYSTEM + CONTACT FORM ========================= */
.brand-system {
  padding: 80px 0 100px;
}

.brand-system-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.brand-system-left {
  text-align: left;
}

.brand-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c11f2f;
  margin-bottom: 16px;
}

.about-botton {
  margin-bottom: 28px;
}

.brand-desc {
  font-size: 16px;
  color: #8E8A90;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 420px;
}

.brand-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brand-perks li {
  font-size: 15px;
  font-weight: 500;
  color: #3B373E;
}

.contact-form-card {
  background: #fff;
  border-radius: 32px;
  padding: 28px 28px;
  box-shadow: 0 20px 60px rgba(59, 55, 62, 0.10);
  border: 1px solid rgba(240, 108, 66, 0.08);
  transition: box-shadow 0.5s ease;
}

.contact-form-card.highlight {
  box-shadow: 0 0 0 3px rgba(240, 108, 66, 0.35), 0 24px 64px rgba(59, 55, 62, 0.14);
  animation: formPulse 0.6s ease;
}

@keyframes formPulse {
  0% {
    transform: scale(1)
  }

  40% {
    transform: scale(1.012)
  }

  100% {
    transform: scale(1)
  }
}

.form-heading {
  font-size: 22px;
  font-weight: 700;
  color: #2F2C30;
  margin-bottom: 6px;
}

.form-heading span {
  color: #c11f2f;
}

.form-sub {
  font-size: 14px;
  color: #9E9A9F;
  margin-bottom: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #3B373E;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
  border: 1.5px solid #EDE8EC;
  border-radius: 50px;
  padding: 12px 18px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #2F2C30;
  background: #FAF8F9;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  resize: none;
  width: 100%;
}

.form-group textarea {
  height: 100px;
}

.form-group textarea {
  border-radius: 20px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #c11f2f;
  box-shadow: 0 0 0 3px rgba(240, 108, 66, 0.10);
  background: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #C0BAC4;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-submit-btn {
  width: 100% !important;
  padding: 14px !important;
  background: #c11f2f !important;
  color: #fff !important;
  border: none !important;
  border-radius: 50px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  margin-top: 4px !important;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s !important;
  font-family: 'Inter', sans-serif !important;
  letter-spacing: 0 !important;
}

.form-group p {
  margin: 0 !important;
}

.form-group label+br {
  display: none !important;
}

.modal-box {
  padding-bottom: 0 !important;
}

.contact-form-card {
  padding-bottom: 0 !important;
}

.form-submit-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 28px rgba(238, 93, 40, 0.35) !important;
  background: #b60f20 !important;
}

/* Required asterisk */
.req {
  color: #c11f2f;
}

/* Field error text */
.field-error {
  display: block;
  font-size: 12px;
  color: #e53e3e;
  margin-top: 4px;
  font-weight: 500;
  line-height: 1;
}

/* Input invalid state */
.form-group input.invalid,
.form-group textarea.invalid {
  border-color: #e53e3e !important;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.10) !important;
}

/* Input valid state */
.form-group input.valid,
.form-group textarea.valid {
  border-color: #48bb78 !important;
}

/* Error banner */
.form-error-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff5f5;
  border: 1px solid #fed7d7;
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 18px;
  font-size: 13.5px;
  color: #c53030;
  font-weight: 500;
  animation: slideDown 0.3s ease;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 36px 20px 20px;
  animation: fadeInUp 0.5s ease;
}

.form-success-icon {
  margin-bottom: 16px;
}

.form-success h4 {
  font-size: 18px;
  font-weight: 700;
  color: #2F2C30;
  margin-bottom: 8px;
}

.form-success p {
  font-size: 14px;
  color: #888;
  margin-bottom: 24px;
}

.form-reset-btn {
  background: transparent;
  border: 2px solid #c11f2f;
  color: #c11f2f;
  border-radius: 50px;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s, color 0.2s;
}

.form-reset-btn:hover {
  background: #c11f2f;
  color: #fff;
}

/* Loader spinner */
@keyframes spin-anim {
  to {
    transform: rotate(360deg);
  }
}

.spin {
  animation: spin-anim 0.8s linear infinite;
}

/* Disabled button */
.form-submit-btn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Animations */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* reCAPTCHA note */
.recaptcha-note {
  font-size: 11px;
  color: #bbb;
  text-align: center;
  margin-top: 12px;
  margin-bottom: 0;
}

.recaptcha-note a {
  color: #bbb;
  text-decoration: underline;
}

/* Hide reCAPTCHA badge (we show our own notice) */
.grecaptcha-badge {
  visibility: hidden !important;
}

.recaptcha-wrap {
  margin-bottom: 4px;
}

.recaptcha-wrap .g-recaptcha {
  transform: scale(0.92);
  transform-origin: left top;
}

/*
SUCCESS STORIES CSS — uncomment to enable
.success-section { padding: 80px 0 90px; background: #FAFAF9; }
.success-title { font-size: 36px; font-weight: 700; color: #2F2C30; margin-bottom: 10px; }
.success-title span { color: #c11f2f; }
.success-sub { font-size: 15px; color: #8E8A90; }
.success-logos { display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; margin-bottom: 50px; }
.success-logos span { font-size: 13px; font-weight: 600; color: #B0ACAA; letter-spacing: 0.08em; text-transform: uppercase; }
.success-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 900px; margin: 0 auto; }
.success-card { background: #fff; border-radius: 16px; padding: 28px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.sc-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.sc-head img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.sc-head strong { font-size: 14px; font-weight: 700; color: #2F2C30; }
.sc-divider { color: #ccc; margin: 0 6px; }
.success-card p { font-size: 14px; color: #555; line-height: 1.65; margin-bottom: 18px; }
.sc-brand span { font-size: 13px; font-weight: 600; color: #2F2C30; }
*/


/* ========================= CUSTOM CURSOR ========================= */
body {
  cursor: default;
}

#cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c11f2f;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease, opacity 0.15s ease;
  mix-blend-mode: multiply;
}

.sparkle {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  animation: sparkle-out 0.7s ease-out forwards;
}

@keyframes sparkle-out {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(0);
  }
}

/* ── SVG ICON FLOAT ANIMATIONS ── */
@keyframes float-top {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-5px)
  }
}

@keyframes float-left {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(5px)
  }
}

@keyframes float-right {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-4px)
  }
}

.icon-top {
  animation: float-top 3.2s ease-in-out infinite;
  transform-origin: 240px 36px;
}

.icon-left {
  animation: float-left 3.8s ease-in-out infinite;
  transform-origin: 52px 382px;
}

.icon-right {
  animation: float-right 3.5s ease-in-out infinite;
  transform-origin: 428px 382px;
}

/* ========================= FOOTER ========================= */
.brandaid-footer {
  background: #1E1B20;
  color: #C8C3CC;
}

.footer-inner {
  text-align: center;
  /* max-width: 1200px; */
  margin: 0 auto;
}

.footer-bottom {
  padding: 22px 0;
}

.footer-copy {
  font-size: 13px;
  color: #5E5A62;
}

[id] {
  scroll-margin-top: 90px;
}


.footer-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center
}

.footer-copy {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35)
}

span.footer-made {
  margin-left: auto;
  text-align: right;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35)
}

span.footer-made a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none
}

.heart {
  display: inline-block;
  animation: blink 2s infinite
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: 0.4;
    transform: scale(1.1)
  }
}

.tag-c.page {
  display: inline-block;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(232, 87, 26, 0.07);
  border: 1px solid rgba(232, 87, 26, 0.18);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 22px;
  animation: fade-up 0.5s ease 0.1s forwards;
}

.hero-section--slim {
  padding: 100px 0 3%;
}

/* 
.breadcrumb-wrap a {
  color: #2c2525;
} */

a.hero-sec-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--orange);
  border: none;
  cursor: pointer;
  height: 50px;
  padding: 0 30px;
  border-radius: 10px;
  animation: fade-up 0.6s ease 0.86s forwards;
  transition: background 0.15s, transform 0.12s, box-shadow 0.15s;
  box-shadow: 0 5px 20px rgba(232, 87, 26, 0.3);
  text-decoration: none !important;
}

.hero-sec-btn:hover {
  background: var(--red2);
  transform: translateY(-1px);
}

/* Compact page/search/404 improvements (part 1) */

.page-featured-image {
  margin: -56px auto 34px;
  max-width: 980px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(33, 37, 59, 0.12);
}

.entry-page .entry-content {
  font-size: 17px;
  line-height: 1.9;
  color: #4b4850;
}

/* quick links for page child navigation */
.quick-links-grid.page-child-links {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 28px;
}

/* Global quick-links/card styles (ensure available on all breakpoints) */
.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 22px;
}

.quick-link-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  border: 1px solid rgba(193, 31, 47, 0.12);
  border-radius: 22px;
  padding: 24px 22px;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(33, 37, 59, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.quick-link-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px rgba(33, 37, 59, 0.10);
  border-color: rgba(193, 31, 47, 0.3);
}

.quick-link-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(193, 31, 47, 0.09);
  color: var(--red);
  font-size: 19px;
}

.quick-link-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.quick-link-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #7a7684;
  margin: 0;
  flex: 1 1 auto;
}

.quick-link-arrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}


/* Search refinements (part) */
.search-results-layout {
  padding: 70px 0 100px;
}

.search-results-intro {
  padding: 28px 30px;
  border-radius: 26px;
  background: rgba(255, 243, 245, 0.95);
}

.search-results-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}

.search-result-card {
  padding: 28px;
  border-radius: 20px;
  min-height: 220px;
}

.search-result-card h2 {
  font-size: 1.375rem;
}

.search-card-link {
  margin-top: 18px;
}

.no-results--search {
  max-width: 820px;
  margin: 36px auto;
  padding: 44px 30px;
  border-radius: 22px;
}

/* 404 hero + nav responsive */
.hero-section--error {
  background: linear-gradient(180deg, #fff 0%, #fff6f7 40%, #fbf3f5 100%);
}

.hero-row--error {
  gap: 28px;
  align-items: stretch;
}

.hero-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 28px 60px rgba(33, 37, 59, 0.08);
}

.hero-card--split {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-btns .btn,
.hero-btns a {
  min-width: 160px;
}

/* ---- Accessibility & content layout fixes ---- */
.entry-page .entry-content {
  text-align: left;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.entry-page .entry-content p,
.entry-page .entry-content ul,
.entry-page .entry-content ol,
.entry-page .entry-content h2,
.entry-page .entry-content h3 {
  text-align: left;
}

/* ===== ENHANCED PAGE DESIGN ===== */

.page-main-content {
  min-width: 0;
}

.featured-image-enhanced {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 16px 40px rgba(193, 31, 47, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-image-enhanced:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(193, 31, 47, 0.15);
}

.featured-image-enhanced img {
  width: 100%;
  height: auto;
  display: block;
}

.content-enhanced h2,
.content-enhanced h3,
.content-enhanced h4 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--navy);
  font-weight: 700;
}

.content-enhanced h2 {
  font-size: 28px;
  line-height: 1.3;
}

.content-enhanced h3 {
  font-size: 22px;
}

.content-enhanced p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: #555;
}

.content-enhanced ul,
.content-enhanced ol {
  margin: 20px 0;
  padding-left: 24px;
}

.content-enhanced li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.content-enhanced a {
  color: var(--red);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.content-enhanced a:hover {
  color: var(--red2);
  text-decoration: underline;
}

.content-enhanced blockquote {
  border-left: 4px solid var(--red);
  padding-left: 20px;
  margin: 28px 0;
  font-style: italic;
  color: #666;
}

.child-links-heading {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
  margin-top: 50px;
}

.page-child-sections {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 2px solid rgba(193, 31, 47, 0.1);
}

.child-link-enhanced {
  border: 2px solid #e8e1df;
  transition: all 0.3s ease;
}

.child-link-enhanced:hover {
  border-color: var(--red);
  box-shadow: 0 12px 32px rgba(193, 31, 47, 0.15);
  transform: translateY(-8px);
}

/* PAGE SIDEBAR */
.page-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.sidebar-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
}

.sidebar-menu li {
  margin-bottom: 12px;
}

.sidebar-menu a {
  color: var(--red);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  padding: 8px;
  border-radius: 6px;
}

.sidebar-menu a:hover {
  background: rgba(193, 31, 47, 0.08);
  transform: translateX(4px);
}

.cta-widget {
  background: linear-gradient(135deg, rgba(193, 31, 47, 0.08) 0%, rgba(193, 31, 47, 0.04) 100%);
  border: 2px solid rgba(193, 31, 47, 0.15);
}

.cta-widget p {
  color: #666;
  font-size: 14px;
  margin-bottom: 16px;
}

/* SEARCH.PHP ENHANCEMENTS */
.search-results-grid--enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}

.search-card-enhanced {
  background: #fff;
  border: 1px solid #e8e1df;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  position: relative;
  overflow: hidden;
}

.search-card-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--red2));
  transition: left 0.3s ease;
}

.search-card-enhanced:hover {
  border-color: var(--red);
  box-shadow: 0 16px 40px rgba(193, 31, 47, 0.12);
  transform: translateY(-6px);
}

.search-card-enhanced:hover::before {
  left: 0;
}

.search-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 12px;
}

.search-result-type {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--red);
  background: rgba(193, 31, 47, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
}

.search-result-date {
  font-size: 13px;
  color: #999;
  font-weight: 500;
}

.search-result-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 12px 0;
  line-height: 1.4;
}

.search-result-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.search-result-title a:hover {
  color: var(--red);
}

.search-result-excerpt {
  flex-grow: 1;
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin: 12px 0 16px;
}

.search-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #e8e1df;
}

.search-card-link:hover {
  gap: 12px;
}

.search-card-link i {
  transition: transform 0.2s ease;
}

.search-card-link:hover i {
  transform: translateX(4px);
}

.search-pagination--enhanced {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 40px 0;
  margin-top: 40px;
}

.search-pagination--enhanced .nav-links,
.search-pagination--enhanced a,
.search-pagination--enhanced .page-numbers,
.search-pagination--enhanced span {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #e8e1df;
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.search-pagination--enhanced a:hover,
.search-pagination--enhanced .page-numbers:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  transform: translateY(-2px);
}

.search-pagination--enhanced .page-numbers.current {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.no-results--enhanced {
  background: linear-gradient(135deg, rgba(255, 243, 245, 1) 0%, rgba(255, 248, 248, 1) 100%);
  border: 2px solid rgba(193, 31, 47, 0.15);
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
}

.no-results-icon {
  font-size: 72px;
  color: rgba(193, 31, 47, 0.2);
  display: block;
  margin-bottom: 20px;
}

.no-results--enhanced h2 {
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 700;
}

.no-results--enhanced p {
  color: #666;
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.search-form--refined {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto 32px;
  background: #fff;
  padding: 8px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.search-field--large {
  flex: 1;
  padding: 12px 16px;
  border: none;
  font-size: 14px;
  border-radius: 8px;
  background: transparent;
}

.search-btn--large {
  padding: 12px 20px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
}

.search-btn--large:hover {
  background: var(--red2);
  transform: scale(1.02);
}

.search-suggestions--enhanced {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.search-suggestions--enhanced h3 {
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 700;
}

.search-suggestions--enhanced ul {
  list-style: none;
  padding: 0;
}

.search-suggestions--enhanced li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(193, 31, 47, 0.1);
  color: #666;
  line-height: 1.6;
}

.search-suggestions--enhanced li:last-child {
  border-bottom: none;
}

/* 404.PHP ENHANCEMENTS */
.quick-links-section--404 {
  padding: 60px 0;
}

.section-title--404 {
  font-size: 32px;
}

.quick-links-grid--enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.quick-link-card--enhanced {
  background: #fff;
  border: 2px solid #e8e1df;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  position: relative;
  overflow: hidden;
}

.quick-link-card--enhanced::after {
  content: '';
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: rgba(193, 31, 47, 0.05);
  transition: right 0.3s ease;
  z-index: 0;
}

.quick-link-card--enhanced>* {
  position: relative;
  z-index: 1;
}

.quick-link-card--enhanced:hover::after {
  right: 0;
}

.quick-link-card--enhanced:hover {
  border-color: var(--red);
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(193, 31, 47, 0.15);
}

.results-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.results-info strong {
  color: var(--navy);
  font-weight: 700;
}

/* ==========================
   CTA BAND
========================== */
.cta-band {
  padding: 44px 0;
  background: var(--orange);
  border-top: 1px solid rgba(193, 31, 47, .08);
}

.cta-band-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.cta-band h2 {
  margin: 0 0 14px;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
}

.cta-band p {
  margin: 0;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.8;
  color: #fff;
}

/* Buttons */
.cta-band-btns {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Primary Button */
.btn-cta-light {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
  cursor: pointer;
  padding: 0 22px;
  border-radius: 8px;
  transition: background 0.15s, transform 0.12s;
  box-shadow: 0 3px 14px rgba(193, 31, 47, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  height: 50px;
}

.btn-cta-light:hover {
  background: #a81827;
  border-color: #a81827;
  color: #fff;
  transform: translateY(-3px);
}

/* Outline Button */
.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  height: 50px;
  padding: 0 30px;
  border-radius: 10px;
  animation: fade-up 0.6s ease 0.86s forwards;
  transition: background 0.15s, transform 0.12s, box-shadow 0.15s;
  box-shadow: 0 5px 20px rgba(232, 87, 26, 0.3);
  color: #c11f2f;
  text-decoration: none !important;
  background: #fff;
}

.btn-cta-outline:hover {
  color: #000000;
  border-color: #c11f2f;
  transform: translateY(-3px);
}

/* ==========================
   Popular Search Tags
========================== */

.search-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 35px 0;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid rgba(193, 31, 47, .12);
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .05);
}

.search-tags-label {
  font-size: 15px;
  font-weight: 700;
  color: #1f2432;
  margin-right: 4px;
}

.search-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  background: #fff5f5;
  color: #c11f2f;
  border: 1px solid rgba(193, 31, 47, .18);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: .3s ease;
}

.search-tag:hover {
  background: #c11f2f;
  color: #fff;
  border-color: #c11f2f;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(193, 31, 47, .25);
}

.modal-title-highlight {
  color: #c11f2f;
}

.what-is-visual {
  height: 100%;
  width: 100%;
}

/* RESPONSIVE ENHANCEMENTS */
@media (max-width: 1024px) {

  .culture-grid,
  .community-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }

  .culture-card img,
  .community-card img {
    height: 140px;
  }
}

@media (max-width: 992px) {
  .nav {
    padding: 0 18px;
    min-height: 72px;
  }

  .nav-links-row,
  .nav-cta-btn {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }

  .mobile-drawer {
    top: 72px;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 18px 40px rgba(25, 29, 48, 0.12);
  }

  .search-results-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-wrap,
  .hero-section,
  .hero-row {
    flex-direction: column;
  }

  .hero-right {
    width: 100%;
  }

  .search-results-grid {
    grid-template-columns: 1fr;
  }

  .hero-title-1 {
    font-size: 38px;
  }

  .hero-title-row {
    display: block;
  }

  .hero-title-plain,
  .hero-title-orange {
    font-size: 32px;
  }

  .about-headline {
    font-size: 32px;
  }

  .section-title,
  .brand-system-left h2 {
    font-size: 30px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-section .row {
    flex-direction: column;
  }

  .hero-left {
    max-width: 100%;
    padding-right: 0;
    text-align: center;
    margin-bottom: 40px;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-img-wrapper {
    width: 380px;
    height: 320px;
    margin: 0 auto;
  }

  .card1 {
    width: 155px;
    height: 104px;
    top: 60px;
    left: 6px
  }

  .card2 {
    width: 165px;
    height: 110px;
    top: 36px;
    right: 8px
  }

  .card3 {
    width: 126px;
    height: 84px;
    bottom: 40px;
    left: 36px
  }

  .card4 {
    width: 142px;
    height: 94px;
    bottom: 24px;
    right: 24px
  }

  .overlay-brandaid-logo {
    width: 90px !important;
    top: 8px;
  }

  .brand-system-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .brand-system-left {
    text-align: center;
  }

  .brand-desc {
    max-width: 100%;
    margin: 0 auto 28px;
  }

  .brand-perks {
    align-items: center;
  }

  .phil-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .phil-left-heading {
    font-size: 28px;
  }

  .phil-title-center {
    font-size: 32px;
  }

  .page-featured-image {
    margin-top: -40px;
  }

  .cta-band-inner {
    text-align: center;
    justify-content: center;
  }

  .cta-band p {
    max-width: 100%;
  }

  .page-layout-wrapper {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .page-sidebar {
    flex-direction: row;
    position: static;
    top: auto;
  }

  .sidebar-widget {
    flex: 1;
  }

  .search-results-grid--enhanced {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }

  .service-hero-wrap {
    padding: 60px 24px 0 !important;
    min-height: 480px;
  }

  .cta-band {
    padding: 70px 0;
  }

  .cta-band-inner {
    flex-direction: column;
    text-align: center;
    gap: 35px;
  }

  .cta-band h2 {
    font-size: 34px;
  }

  .cta-band p {
    margin: auto;
  }

  .cta-band-btns {
    justify-content: center;
  }
}

@media (max-width: 800px) {
  body {
    cursor: auto;
  }

  #cursor {
    display: none;
  }
}

@media (max-width: 768px) {

  .nav-links-row,
  .nav-cta-btn {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
    margin-left: auto !important;
  }

  .nav-drawer {
    display: block !important;
  }

  a.nav-logo img {
    height: 48px;
  }

  .hero-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .culture-grid,
  .community-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .culture-card img,
  .community-card img {
    height: 160px;
  }

  .philosophy-section {
    padding: 60px 20px 70px;
  }

  .phil-title-center,
  .section-title {
    font-size: 28px;
  }

  .section-sub {
    font-size: 15px;
  }

  .phil-left-heading {
    font-size: 24px;
  }

  .phil-text-left {
    text-align: center;
  }

  .phil-left-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .phil-left-perks {
    align-items: center;
  }

  .entry-page {
    padding: 28px;
  }

  .hero-row--error {
    flex-direction: column;
  }

  .hero-section--error .hero-left,
  .hero-section--error .hero-right {
    width: 100%;
  }

  .featured-image-enhanced {
    margin-bottom: 28px;
  }

  .content-enhanced h2 {
    font-size: 24px;
  }

  .child-links-heading {
    font-size: 20px;
    margin-top: 36px;
  }

  .page-sidebar {
    flex-direction: column;
  }

  .sidebar-widget {
    flex: none;
  }

  .search-form--refined {
    flex-direction: column;
  }

  .search-field--large {
    width: 100%;
  }

  .search-btn--large {
    width: 100%;
  }

  .quick-links-grid--enhanced {
    grid-template-columns: 1fr;
  }

  .search-results-grid--enhanced {
    grid-template-columns: 1fr;
  }

  .no-results--enhanced {
    padding: 40px 24px;
  }

  .search-tags {
    padding: 16px;
    gap: 8px;
  }

  .search-tag {
    font-size: 13px;
    padding: 8px 15px;
  }

}

@media (max-width: 576px) {
  .cta-bar h2 {
    font-size: 22px !important;
    text-align: center !important;
    margin-bottom: 0 !important;
    width: 100%;
  }

  .faq-section button.faq-question {
    display: flex !important;
  }

  div#page-container button {
    width: 100%;
    display: block;
  }

  section {
    padding: 75px 0 !important;
  }

  .cta-bar-btn {
    text-align: center;
    margin: 0 auto;
  }

  .cta-bar-mid {
    text-align: center;
    width: 100%;
  }

  .case-study .case-card ul li:before {
    left: 15px !important;
  }

  .page-featured-image {
    margin-top: -36px;
  }

  .search-results-intro {
    padding: 18px;
  }

  .mobile-drawer {
    padding: 12px 14px 14px;
  }

  .page-hero,
  .search-hero {
    padding-top: 110px;
  }

  .hero-title-1 {
    font-size: 36px;
  }

  .search-results-grid {
    gap: 18px;
  }

  .search-card-link,
  .btn-primary,
  .btn {
    width: 100%;
    justify-content: center;
  }

  .nav-inner {
    max-width: none;
    height: auto;
  }

  a.nav-logo img {
    height: 44px;
  }

  .hero-title-1 {
    font-size: 30px;
  }

  .hero-title-plain,
  .hero-title-orange {
    font-size: 28px;
  }

  .about-headline {
    font-size: 26px;
  }

  .about-text {
    font-size: 15px;
  }

  .section-title,
  .brand-system-left h2 {
    font-size: 24px;
  }

  .section-sub {
    font-size: 14px;
  }

  .hero-section {
    padding: 36px 0 20px;
  }

  .about-section {
    padding: 64px 0 48px;
  }

  .culture-section,
  .community-section,
  .brand-system {
    padding: 40px 0;
  }

  .hero-left {
    text-align: center;
    padding: 0;
    max-width: 100%;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-img-wrapper {
    width: 300px;
    height: 260px;
    margin: 32px auto 0;
  }

  .overlay-brandaid-logo {
    width: 76px !important;
    top: -30px;
    left: 90px;
  }

  .card1 {
    width: 122px;
    height: 82px;
    top: 46px;
    left: 4px
  }

  .card2 {
    width: 130px;
    height: 86px;
    top: 28px;
    right: 4px
  }

  .card3 {
    width: 100px;
    height: 66px;
    bottom: 30px;
    left: 26px
  }

  .card4 {
    width: 112px;
    height: 74px;
    bottom: 18px;
    right: 18px
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 100%;
  }

  .feature-item {
    padding: 14px 16px;
    gap: 14px;
    border-bottom: 1px solid rgba(240, 108, 66, 0.08);
  }

  .feature-item:last-child {
    border-bottom: none;
  }

  .feature-icon {
    width: 32px;
  }

  .feature-label {
    font-size: 15px;
    font-weight: 500;
  }

  .culture-grid,
  .community-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .culture-card img,
  .community-card img {
    height: 200px;
    object-position: center;
  }

  .culture-card h4,
  .community-card h4 {
    font-size: 16px;
    margin: 14px 16px 6px;
    text-align: left;
  }

  .culture-card p,
  .community-card p {
    font-size: 13px;
    padding: 0 16px 18px;
    text-align: left;
  }

  .philosophy-section {
    padding: 50px 16px 60px;
  }

  .phil-title-center {
    font-size: 24px;
  }

  .contact-form-card {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-heading {
    font-size: 19px;
  }

  .entry-page {
    padding: 28px 22px;
  }

  .quick-links-grid {
    grid-template-columns: 1fr;
  }

  .cta-band-btns {
    width: 100%;
    justify-content: center;
  }

  .decor-blob {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }

  .footer-copy {
    position: static;
    transform: none;
  }

  .footer-made {
    margin-left: 0;
  }

  span.footer-made {
    text-align: center;
    padding: 0;
    margin: 0;
  }

  .page-featured-image {
    margin-top: -24px;
    margin-left: -14px;
    margin-right: -14px;
    margin-bottom: 20px;
  }

  .featured-image-enhanced {
    border-radius: 0;
  }

  .content-enhanced h2 {
    font-size: 20px;
    margin-top: 24px;
  }

  .content-enhanced h3 {
    font-size: 18px;
  }

  .quick-link-card--enhanced {
    padding: 20px;
  }

  .quick-link-icon {
    width: 44px;
    height: 44px;
  }

  .quick-link-card h3 {
    font-size: 16px;
  }

  .search-result-title {
    font-size: 1.1rem;
  }

  .no-results--enhanced h2 {
    font-size: 24px;
  }

  .no-results-icon {
    font-size: 56px;
  }

  .cta-band h2 {
    font-size: 28px;
  }

  .cta-band p {
    font-size: 15px;
  }

  .cta-band-btns {
    width: 100%;
    flex-direction: column;
  }

  .btn-cta-light,
  .btn-cta-outline {
    width: 100%;
  }
}

@media (max-width: 400px) {
  .hero-img-wrapper {
    width: 260px;
    height: 220px;
  }

  .card1 {
    width: 104px;
    height: 70px;
    top: 38px;
    left: 2px
  }

  .card2 {
    width: 112px;
    height: 74px;
    top: 22px;
    right: 2px
  }

  .card3 {
    width: 86px;
    height: 56px;
    bottom: 22px;
    left: 16px
  }

  .card4 {
    width: 96px;
    height: 64px;
    bottom: 12px;
    right: 12px
  }

  .culture-grid,
  .community-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .culture-card img,
  .community-card img {
    height: 185px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-title-1 {
    font-size: 26px;
  }

  .hero-title-orange {
    font-size: 24px;
  }

  .about-headline {
    font-size: 22px;
  }

  .section-title,
  .phil-title-center {
    font-size: 20px;
  }

  /* ========================= 404 / PAGE / SEARCH — REDESIGN ========================= */

  /* --- decorative blobs shared by inner-page heroes --- */
  .decor-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.55;
  }

  .decor-blob--a {
    width: 260px;
    height: 260px;
    top: -60px;
    right: 6%;
    background: radial-gradient(circle at 30% 30%, rgba(193, 31, 47, 0.16), rgba(193, 31, 47, 0) 70%);
    animation: decorFloat 8s ease-in-out infinite;
  }

  .decor-blob--b {
    width: 180px;
    height: 180px;
    bottom: -50px;
    left: 4%;
    background: radial-gradient(circle at 40% 40%, rgba(26, 26, 46, 0.08), rgba(26, 26, 46, 0) 70%);
    animation: decorFloat 10s ease-in-out infinite reverse;
  }

  .decor-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--red);
    opacity: 0.5;
  }

  @keyframes decorFloat {

    0%,
    100% {
      transform: translateY(0) translateX(0);
    }

    50% {
      transform: translateY(-18px) translateX(10px);
    }
  }

  /* --- 404 illustration mark --- */
  .error-mark {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
  }

  .error-mark-num {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--red);
    background: rgba(193, 31, 47, 0.08);
    border: 1px solid rgba(193, 31, 47, 0.16);
    padding: 8px 16px;
    border-radius: 100px;
    text-transform: uppercase;
  }

  /* --- quick links / explore grid (used on 404 + page.php) --- */
  .quick-links-section {
    padding: 20px 0 78px;
  }

  .quick-links-head {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 40px;
  }

  .quick-links-head .section-eyebrow {
    text-align: center;
  }

  .quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 22px;
  }

  .quick-link-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: #ffffff;
    border: 1px solid rgba(193, 31, 47, 0.12);
    border-radius: 22px;
    padding: 30px 26px;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(33, 37, 59, 0.05);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  }

  .quick-link-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 44px rgba(33, 37, 59, 0.10);
    border-color: rgba(193, 31, 47, 0.3);
  }

  .quick-link-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(193, 31, 47, 0.09);
    color: var(--red);
    font-size: 19px;
  }

  .quick-link-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
  }

  .quick-link-card p {
    font-size: 14px;
    line-height: 1.65;
    color: #7a7684;
    margin: 0;
    flex: 1 1 auto;
  }

  .quick-link-arrow {
    font-size: 13px;
    font-weight: 700;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  /* --- CTA band, shared across inner templates --- */
  .cta-band {
    position: relative;
    overflow: hidden;
    margin: 0 0 -1px;
    padding: 64px 0;
    background: linear-gradient(120deg, #1a1a2e 0%, #241628 55%, #3a1420 100%);
  }

  .cta-band::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 20%, rgba(193, 31, 47, 0.35), transparent 45%);
    pointer-events: none;
  }

  .cta-band-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .cta-band h2 {
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
  }

  .cta-band p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    max-width: 460px;
  }

  .cta-band-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

  a.btn-cta-light {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #fff;
    background: transparent;
    border: 1px solid #fff;
    cursor: pointer;
    padding: 0 22px;
    border-radius: 8px;
    transition: background 0.15s, transform 0.12s;
    box-shadow: 0 3px 14px rgba(193, 31, 47, 0.28);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    height: 50px;
  }

  .btn-cta-light:hover {
    transform: translateY(-2px);
  }

  .btn-cta-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
  }

  /* --- page.php: featured image + refined content card --- */
  .page-featured-image {
    margin: -74px auto 36px;
    max-width: 1000px;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 26px 54px rgba(33, 37, 59, 0.14);
    position: relative;
    z-index: 2;
  }

  .page-featured-image img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    display: block;
  }

  .entry-page {
    padding: 44px 48px;
  }

  .entry-page .entry-content>*:first-child {
    margin-top: 0;
  }

  .entry-page .entry-content h2 {
    font-size: 26px;
    color: var(--navy);
    margin: 34px 0 14px;
  }

  .entry-page .entry-content h3 {
    font-size: 20px;
    color: var(--navy);
    margin: 26px 0 12px;
  }

  .entry-page .entry-content p {
    margin-bottom: 16px;
  }

  .entry-page .entry-content ul,
  .entry-page .entry-content ol {
    margin: 0 0 16px 22px;
    line-height: 1.8;
  }

  .entry-page .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 10px 0;
  }

  .entry-page .entry-content a {
    color: var(--red);
    text-decoration: underline;
    text-decoration-color: rgba(193, 31, 47, 0.35);
  }

  /* --- search page refinements --- */
  .search-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
  }

  .search-tags span.search-tags-label {
    font-size: 13px;
    font-weight: 600;
    color: #6f6b76;
    margin-right: 2px;
  }

  .search-tag {
    font-size: 13px;
    padding: 7px 15px;
    border-radius: 100px;
    background: rgba(193, 31, 47, 0.06);
    border: 1px solid rgba(193, 31, 47, 0.16);
    color: var(--navy);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .search-tag:hover {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
  }

  .search-result-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 14px;
  }

  .search-result-meta i {
    font-size: 11px;
  }

  .search-result-card h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .search-results-count {
    font-weight: 700;
    color: var(--navy);
  }

  .no-results-icon {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: rgba(193, 31, 47, 0.08);
    color: var(--red);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
  }
}