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

:root {
  --white: #fff;
  --cream: #faf3e9;
  --cream2: #f2e8d4;
  --dark: #1a1a1a;
  --maroon: #650202;
  --maroon2: #4a0101;
  --orange: #e87c1e;
  --muted: #666;
  --text-body: #3d3d3d;
  --border: #e5e5e5;
  --blue: #2563eb;
  --green: #16a34a;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: #fff;
  color: var(--dark);
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ══════════════════════ LAYOUT ══════════════════════ */
.container {
  width: 100%;
  max-width: 1530px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
}

/* ══════════════════════ GLOBAL TYPOGRAPHY ══════════════════════ */

/* Section Heading (h2-level) */
.section-heading {
  font-family: "Outfit", sans-serif;
  font-size: 45px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  color: #000;
}

/* Section Subheading */
.section-subheading {
  font-family: "DM Sans", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 136%;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  color: #3d3d3d;
  display: block;
  margin-bottom: 10px;
}

/* Body paragraph */
.section-paragraph {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #3d3d3d;
}

/* Centered variants */
.section-heading--center {
  text-align: center;
}
.section-subheading--center {
  text-align: center;
}
.section-paragraph--center {
  text-align: center;
}

/* Legacy eyebrow (small red uppercase) */
.eyebrow {
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 10px;
  display: block;
}

/* ══════════════════════ BUTTONS ══════════════════════ */
.btn {
  font-family: "Outfit", sans-serif;
  background: var(--maroon);
  color: #fff;
  border: none;
  padding: 13px 28px 15px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  display: inline-block;
}
.btn:hover {
  background: var(--maroon2);
}
.btn--white {
  background: #fff;
  color: var(--maroon);
}
.btn--white:hover {
  background: #f5e8e8;
}

/* ══════════════════════ NAVBAR ══════════════════════ */
.navbar {
  width: 100%;
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.07);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar__logo img {
  width: 100%;
  height: 70px;
  object-fit: contain;
}
.navbar__links {
  display: flex;
  gap: 34px;
  list-style: none;
}
.navbar__links a {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
  padding: 10px 0;
}
#menu-item-66 {
  display: none;
}
.navbar__links a:hover,
.navbar__links a.active {
  color: var(--maroon);
}
.navbar__links a.active {
  border-bottom: 2px solid var(--dark);
  padding-bottom: 2px;
}
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
}

/* Mobile nav */
.mobile-nav {
  width: 100%;
  background: var(--cream);
  border-top: 1px solid var(--border);
}
.mobile-nav__links {
  display: none;
  flex-direction: column;
}
.mobile-nav__links.open {
  display: flex;
}
.mobile-nav__links .btn {
  width: 100%;
  margin-bottom: 15px;
}
.mobile-nav__links .btn a {
  border-bottom: none;
  padding: 0;
}
.mobile-nav__links a {
  display: block;
  width: 100%;
  font-family: "Outfit", sans-serif;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mobile-nav__links .btn {
  margin-top: 14px;
  text-align: center;
}


/* ══════════════════════ DROPDOWN ══════════════════════ */
.navbar__links .menu-item-has-children {
  position: relative;
}

/* Hide sub-menu by default */
.navbar__links .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: var(--cream);
  min-width: 200px;
  list-style: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-top: 2px solid var(--maroon);
  z-index: 200;
  padding: 8px 0;
}

/* Show on hover */
.navbar__links .menu-item-has-children:hover > .sub-menu {
  display: block;
}

.navbar__links .sub-menu li a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  border-bottom: none !important;
  transition: background 0.2s, color 0.2s;
}

.navbar__links .sub-menu li a:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--maroon);
}

/* Add a small arrow indicator */
.navbar__links .menu-item-has-children > a::after {
  content: " ▾";
  font-size: 10px;
  opacity: 0.6;
}

/* ══════════════════════ MOBILE DROPDOWN ══════════════════════ */
.mobile-nav__links .menu-item-has-children > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav__links .menu-item-has-children > a::after {
  content: "▾";
  font-size: 12px;
  transition: transform 0.25s;
}

.mobile-nav__links .menu-item-has-children.open > a::after {
  transform: rotate(-180deg);
}

.mobile-nav__links .sub-menu {
  display: none;
  list-style: none;
  padding-left: 12px;
}

.mobile-nav__links .menu-item-has-children.open > .sub-menu {
  display: block;
}

.mobile-nav__links .sub-menu li a {
  font-size: 11px;
  padding: 9px 0;
  opacity: 0.75;
}

/* ══════════════════════ HERO ══════════════════════ */
.hero {
  width: 100%;
  background: var(--cream);
  overflow: hidden;
}
.hero__inner {
  position: relative;
  min-height: 640px;
  overflow: visible;
}
.hero__watermark {
  font-family: "Outfit", sans-serif;
  position: absolute;
  font-size: 299.54px;
  font-weight: 900;
  color: rgba(210, 175, 130, 0.21);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -0.02em;
  user-select: none;
  line-height: 1;
  left: 50%;
  transform: translateX(-50%);
}
.hero__watermark--top {
  top: 28px;
}
.hero__watermark--bottom {
  bottom: 195px;
  font-size: 185px;
  right: 220px;
}
.hero__blob {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.hero__blob--a {
  right: -30px;
  top: 48%;
  width: 370px;
  transform: rotate(-7deg);
}
.hero__blob--b {
  right: -100px;
  bottom: 55px;
  width: 220px;
  transform: rotate(8deg);
}
.hero__painter-img {
  position: absolute;
  right: 120px;
  bottom: 0;
  height: 670px;
  object-fit: contain;
  z-index: 2;
}
.hero__copy {
  position: relative;
  z-index: 3;
  max-width: 520px;
  padding-top: 300px;
  padding-bottom: 64px;
}
.hero__copy h1 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(30px, 4vw, 60px);
  font-weight: 500;
  line-height: 1.12;
  margin-bottom: 16px;
}
.hero__copy h1 em {
  font-style: normal;
  color: var(--maroon);
}
.hero__copy p {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.82;
  margin-bottom: 32px;
  max-width: 380px;
}

.page-hero__overlay{
    background: rgba(20, 10, 10, 0.1) !important;
}

.page-hero__title, .page-hero__breadcrumb, .page-hero__breadcrumb a{
    color: #000 !important;
}

/* Review badge */
.hero__review-badge {
  position: absolute;
  top: 28px;
  right: 0;
  z-index: 5;
  padding: 16px 20px;
  min-width: 216px;
}
.hero__avatar-row {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.hero__avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.hero__avatar--overlap-1 {
  margin-left: -15px;
  position: relative;
  z-index: 1;
}
.hero__avatar--overlap-2 {
  margin-left: -15px;
  position: relative;
  z-index: 2;
}
.hero__avatar-plus {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #000;
  background-color: #fff;
}
.hero__stars {
  color: #f5a623;
  font-size: 15px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.hero__review-badge p {
  font-family: "Outfit", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}

/* --- INNER PAGE HEADER --- */
.bk-page-header {
  background: url("/wp-content/uploads/2026/05/Rectangle-68.png") no-repeat
    center center;
  background-size: cover;
  padding: 150px 0;
}
.bk-breadcrumb {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  margin-top: 10px;
  color: #3d3d3d;
}
.bk-breadcrumb a {
  text-decoration: none;
  color: #3d3d3d;
}
.bk-breadcrumb span {
  margin: 0 8px;
  color: #999;
}

/* ══════════════════════ STATS BAR ══════════════════════ */
.stats-section {
  width: 100%;
  background: var(--cream);
  padding-bottom: 0;
  margin-bottom: -60px;
}
.stats-section__bar {
  background: #fff;
  border-radius: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 4;
}
.stats-section__item {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}
.stats-section__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: var(--border);
}
.stats-section__label {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}
.stats-section__number {
  font-family: "Outfit", sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  line-height: 1;
}
.stats-section__number--dark {
  color: var(--dark);
}
.stats-section__number--blue {
  color: var(--blue);
}
.stats-section__number--green {
  color: var(--green);
}
.stats-section__number--red {
  color: var(--maroon);
}

/* ══════════════════════ TRUSTED / ABOUT ══════════════════════ */
.about-section {
  width: 100%;
  background: var(--white);
  padding: 120px 0 80px;
  text-align: center;
}
.about-section__head {
  max-width: 1200px;
  margin: 0 auto;
}
.about-section__desc {
  margin-top: 20px;
}
.about-section__desc p {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 16px;
}
.about-section__features-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: #f8f8f8;
  border-radius: 14px;
  padding: 30px 20px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid #eee;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.feature-card__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.feature-card__icon img {
  width: 100%;
  height: 50px;
  object-fit: contain;
}
.feature-card__label {
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  display: block;
}
.about-section__cta {
  margin-top: 40px;
}

/* ══════════════════════ MARQUEE ══════════════════════ */
.marquee-section {
  width: 100%;
  padding: 18px 0;
  overflow: hidden;
}
.marquee-section__track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: marquee-scroll 24s linear infinite;
}
.marquee-section__track span {
  font-family: "Outfit", sans-serif;
  font-size: 162px;
  font-weight: 900;
  color: var(--maroon);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.marquee-section__track .marquee-section__sep {
  align-content: center;
}
.marquee-section__sep img {
  width: 90px;
}
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ══════════════════════ SERVICES CARDS ══════════════════════ */
.services-section {
  width: 100%;
  background: #faf3e9;
  padding: 82px 0;
}
.services-section__header {
  text-align: center;
  margin: 0 auto 52px;
}
.services-section__header p {
  max-width: 770px;
  margin-inline: auto;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 12px;
}
.services-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.service-card {
  overflow: hidden;
  position: relative;
  background: #fff;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.13);
}
.service-card__image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.service-card__body {
  padding: 22px;
}
.service-card__body h3 {
  font-family: "Outfit", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #000;
  margin-bottom: 5px;
}
.service-card__body p {
  margin-block: 20px;
  color: #3d3d3d;
  font-size: 16px;
  font-weight: 400;
}
.service-card__body a {
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  transition: color 0.2s;
}
.service-card__body a:hover {
  color: var(--maroon2);
}
.services-section__footer {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

/* ══════════════════════ SHOWCASE ══════════════════════ */
.showcase-section {
  background-image: url("../images/showcase.webp");
  padding: 60px;
  background-position: center;
  background-size: cover;
}
.showcase-section__container {
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}
.showcase-section__card {
  background: white;
  padding: 40px;
  width: 350px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.showcase-section__card-title {
  color: #5d0f11;
  font-size: 40px;
  margin: 0 0 15px 0;
  font-weight: 700;
}
.showcase-section__divider {
  height: 3px;
  background: #5d0f11;
  width: 100%;
  margin-bottom: 30px;
}
.showcase-section__info-group {
  margin-bottom: 25px;
}
.showcase-section__info-label {
  display: block;
  color: #666;
  font-size: 14px;
  margin-bottom: 5px;
}
.showcase-section__info-value {
  display: block;
  color: #333;
  font-size: 18px;
  font-weight: 600;
}
.showcase-section__info-group:not(:last-child) {
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

/* ══════════════════════ LOGO SLIDER ══════════════════════ */
.logo-slider-section {
  background-color: #f7f3ed;
  padding: 40px 0;
  overflow: hidden;
  width: 100%;
}
.logo-slider-section__track-wrapper {
  width: 100%;
  margin: auto;
  overflow: hidden;
}
.logo-slider-section__track {
  display: flex;
  width: calc(250px * 12);
  animation: logo-scroll 20s linear infinite;
}
.logo-slider-section__slide {
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo-slider-section__slide img {
  max-height: 200px;
  width: auto;
  filter: sepia(100%) saturate(1000%) hue-rotate(330deg) brightness(1);
  opacity: 0.8;
  transition: opacity 0.3s;
}
.logo-slider-section__slide img:hover {
  opacity: 1;
}
.logo-slider-section__track:hover {
  animation-play-state: paused;
}
@keyframes logo-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 6));
  }
}

/* ══════════════════════ COMPLETE SERVICES (REFERENCE LAYOUT) ══════════════════════ */
.complete-services-section {
  width: 100%;
  background: var(--cream);
  padding: 82px 0;
}

.complete-services-section__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}

.complete-services-section__header-right {
  display: flex;
  align-items: center;
}

.complete-services-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
}

.complete-service-card__image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 16px;
}

.complete-service-card__number {
  font-size: 22px;
  color: #3d3d3d;
  margin-block: 25px;
}

.complete-service-card__divider {
  width: 100%;
  height: 1px;
  background: #ddd;
  margin-bottom: 16px;
}

.complete-service-card h3 {
  font-size: 28px;
  font-weight: 600;
  color: #000;
  margin-bottom: 12px;
}

.complete-service-card p {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #3d3d3d;
}

/* ══════════════════════ CTA BANNER ══════════════════════ */
.cta-section {
  width: 100%;
  background: #8e1408;
}

.cta-section__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 46px 0;
}

.cta-section__inner > div:first-child {
  max-width: 650px;
}

.cta-section__inner h2 {
  font-family: "Outfit", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 8px;
}

.cta-section__inner p {
  font-family: "DM Sans", sans-serif;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

.cta-section__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-section__actions .btn {
  background: #f4a51c;
  color: #000;
  padding: 14px 26px;
  font-weight: 600;
  border: 2px solid #f4a51c;
  text-decoration: none;
}

.cta-section__phone-link {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

/* ══════════════════════ TESTIMONIALS ══════════════════════ */
.testimonials-section {
  width: 100%;
  background: #fff;
  padding: 82px 0;
  text-align: center;
}

/* REMOVE GRID */
.testimonials-section__grid {
  display: none;
}

/* SWIPER */
.testimonials-slider {
  margin-top: 52px;
  padding-bottom: 50px;
}

/* SLIDE */
.swiper-slide {
  height: auto;
  display: flex;
}

/* CARD */
.testimonial-card {
  background: var(--cream);
  border-radius: 14px;
  padding: 38px;
  position: relative;
  text-align: left;
  height: 100%;
  width: 100%;
}

/* TOP ROW */
.testimonial-card__top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.testimonial-card__quote-icon {
  font-size: 52px;
  color: var(--maroon);
  line-height: 1;
  font-family: Georgia, serif;
  margin-top: -8px;
}

.testimonial-card__stars {
  color: #f5a623;
  font-size: 18px;
  letter-spacing: 2px;
}

/* TEXT */
.testimonial-card__text {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: var(--dark);
  line-height: 1.82;
  margin-bottom: 26px;
}

/* AUTHOR */
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* AVATAR */
.testimonial-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #e8c8a0, #b87c4a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 18px;
}

.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* NAME */
.testimonial-card__name {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 15px;
}

.testimonial-card__role {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

/* ══════════════════════ PAGINATION ══════════════════════ */
.swiper-pagination {
  position: relative !important;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

/* DOT */
.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  border: 2px solid #95a5a5 !important;
  background: transparent !important;
  border-radius: 50%;
  opacity: 1 !important;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

/* ACTIVE DOT */
.swiper-pagination-bullet-active {
  background: #650202 !important;
  border: none !important;
  transform: scale(1.2);
}

/* OPTIONAL HOVER */
.swiper-pagination-bullet:hover {
  border-color: #650202;
}

/* ══════════════════════ BLOG ══════════════════════ */
.blog-section {
  width: 100%;
  background: var(--cream);
  padding: 82px 0;
}

.blog-section .section-heading,
.blog-section .eyebrow {
  text-align: center;
}

.blog-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.blog-card {
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  cursor: pointer;
}
.blog-card:hover {
  transform: translateY(-6px);
}
.blog-card__image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.blog-card__body {
  padding: 26px 0 0;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.blog-card__tag {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000;
}
.blog-card__date {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: #95a5a5;
}
.blog-card__body h3 {
  font-family: "Outfit", sans-serif;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 10px;
}
.blog-card__body p {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  color: #000000;
  line-height: 1.65;
  margin-bottom: 16px;
}
.blog-card__read-more {
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ══════════════════════ FAQ ══════════════════════ */
.faq-section {
  width: 100%;
  background: #fff;
  padding: 82px 0;
}
.faq-section__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 52px;
}
.faq-section__header p {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.75;
}
.faq-section__list {
  max-width: 920px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #650202;
  padding: 0 14px;
}
.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 400;
  cursor: pointer;
  text-align: left;
  color: var(--dark);
  gap: 16px;
  transition: color 0.2s;
}
.faq-item__question:hover {
  color: var(--maroon);
}
.faq-item__question svg {
  flex-shrink: 0;
  transition: transform 0.32s;
}
.faq-item.open .faq-item__question svg {
  transform: rotate(45deg);
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.36s ease;
}
.faq-item__answer p {
  font-family: "DM Sans", sans-serif;
  padding: 0 0 20px;
  font-size: 18px;
  color: #000000;
  line-height: 1.8;
}
.faq-item.open {
  background-color: #faf3e9;
}
.faq-item.open .faq-item__answer {
  max-height: 300px;
}

/* ══════════════════════ CONTACT ══════════════════════ */
.contact-section {
  width: 100%;
  padding-bottom: 80px;
}
.contact-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  margin-top: 30px;
}

.contact-section .section-heading {
  font-size: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0px;
  letter-spacing: 0.04em;
}

.form-group label em {
  font-style: normal;
  color: var(--maroon);
}

.form-group input,
.form-group textarea,
.contact-form .wpcf7-form-control {
  width: 100%;
  border: 1.5px solid #95a5a5;
  padding: 12px 16px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  color: var(--dark);
  background: #fff;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.contact-form .wpcf7-form-control:focus {
  outline: none;
  border-color: var(--maroon);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* CF7 button */
.contact-form .wpcf7-submit {
  width: 22%;
  padding: 16px;
  font-size: 14px;
  cursor: pointer;
  color: #fff;
  background-color: #650202;
  border: none;
  border-radius: 0;
}

/* remove extra CF7 spacing */
.wpcf7 p {
  margin: 0;
}
.contact-section__map {
  overflow: hidden;
  min-height: 360px;
}
.contact-section__map iframe {
  width: 100%;
  min-height: 440px;
  height: 100%;
  border: none;
  display: block;
}

/* ══════════════════════ FOOTER ══════════════════════ */
.site-footer {
  background-color: #650202;
  color: #ffffff;
  padding: 60px 20px 35px;
  font-family: sans-serif;
}
.site-footer__grid {
  max-width: 1530px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  margin-bottom: 50px;
}
.site-footer__col h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}
.site-footer__divider {
  width: 100%;
  height: 2px;
  background: #fff;
  margin-bottom: 25px;
}
.site-footer__logo-box {
  background: white;
  padding: 15px;
  width: fit-content;
  margin-bottom: 20px;
}
.site-footer__logo-box img {
  width: 280px;
  display: block;
}
.site-footer__brand-desc {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 5px 0;
}
.site-footer__social-icons {
  padding-top: 20px;
  display: flex;
  gap: 15px;
}
.site-footer__col p,
.site-footer__col li {
  font-size: 0.95rem;
  margin-bottom: 12px;
  list-style: none;
  line-height: 1.5;
}
.site-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}
.site-footer__contact-item svg {
  flex-shrink: 0;
  width: 24px;
}
.site-footer__bottom {
  max-width: 1530px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 30px;
  text-align: center;
  font-size: 0.9rem;
}

/* ══════════════════════════════════════════════════════════════
   BK GALLERY
   ══════════════════════════════════════════════════════════════ */

.bk-gallery {
  padding: 80px 0;
  background: #fff;
}

/* ── Tabs ── */
.bk-gallery__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.bk-gallery__tab {
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  background: #f0ece6;
  color: #3d3d3d;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.bk-gallery__tab:hover,
.bk-gallery__tab.active {
  background: #650202;
  color: #fff;
}

/* ── Grid ── */
.bk-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* ── Item ── */
.bk-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/3;
  background: #e8ddd0;
  box-shadow: 0 2px 10px rgba(15, 30, 54, 0.08);
  cursor: zoom-in;
}

.bk-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bk-gallery__item:hover .bk-gallery__img {
  transform: scale(1.06);
}

.bk-gallery__placeholder {
  width: 100%;
  height: 100%;
  background: #e8ddd0;
}

/* ── Hover overlay ── */
.bk-gallery__hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 20, 40, 0.55) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity 0.3s;
}

.bk-gallery__item:hover .bk-gallery__hover {
  opacity: 1;
}

/* ── Empty ── */
.bk-gallery__empty {
  grid-column: 1 / -1;
  text-align: center;
  color: #95a5a5;
  padding: 60px 0;
}

/* ── Load More ── */
.bk-gallery__more-wrap {
  text-align: center;
  margin-top: 48px;
}

.bk-gallery__more {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 48px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  background: #650202;
  color: #fff;
  transition: background 0.2s;
}

.bk-gallery__more:hover {
  background: #4a0101;
}

.bk-gallery__more.hidden {
  display: none;
}

/* ══════════════════════════════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════════════════════════════ */

.bk-glb {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.bk-glb.open {
  opacity: 1;
  pointer-events: all;
}

.bk-glb__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 16, 32, 0.92);
  backdrop-filter: blur(8px);
  cursor: zoom-out;
}

.bk-glb__wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(90vw, 1100px);
}

.bk-glb__img {
  display: block;
  max-width: min(88vw, 1000px);
  max-height: 75vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bk-glb.open .bk-glb__img {
  transform: scale(1);
}

.bk-glb__close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
  z-index: 2;
}

.bk-glb__close:hover {
  background: rgba(255,255,255,0.2);
}

.bk-glb__arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}

.bk-glb__arrow:hover { background: rgba(255,255,255,0.2); }
.bk-glb__prev { left: 20px; }
.bk-glb__next { right: 20px; }
.bk-glb__prev:hover { transform: translateY(-50%) translateX(-2px); }
.bk-glb__next:hover { transform: translateY(-50%) translateX(2px); }

.bk-glb__caption {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  margin-top: 12px;
  text-align: center;
}

.bk-glb__counter {
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem;
  margin-top: 4px;
  text-align: center;
  letter-spacing: 0.1em;
}

.bk-glb__thumbs {
  display: flex;
  gap: 6px;
  margin-top: 14px;
  max-width: min(88vw, 700px);
  overflow-x: auto;
  scrollbar-width: none;
  padding: 4px;
}

.bk-glb__thumbs::-webkit-scrollbar { display: none; }

.bk-glb__thumb {
  flex-shrink: 0;
  width: 60px;
  height: 44px;
  border-radius: 3px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.45;
  border: 2px solid transparent;
  transition: opacity 0.2s, border-color 0.2s;
}

.bk-glb__thumb.active {
  opacity: 1;
  border-color: #650202;
}

.bk-glb__thumb:hover { opacity: 0.8; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .bk-gallery { padding: 60px 0; }
  .bk-gallery__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .bk-gallery { padding: 48px 0; }
  .bk-gallery__tab { font-size: 11px; padding: 8px 14px; }
  .bk-glb__arrow { display: none; }
  .bk-glb__thumbs { display: none; }
}

@media (max-width: 560px) {
  .bk-gallery__grid { grid-template-columns: 1fr; }
}
