:root {
  --hb-gold: #481416;       /* Accent Gold -> Maroon */
  --hb-gold-dk: #818769;    /* Primary Sage / Olive Green */
  --hb-rust: #481416;       /* Primary Terracotta / Rust */
  --hb-cream: #edeae6;      /* Neutral Beige/Cream for backgrounds */
  --hb-white: #fff;
  --hb-dark: #481416;       /* Using Rust for deep rich text instead of plain grey */
  --hb-muted: #818769;      /* Using Sage for muted elements */
  --hb-border: #e6d9d0;     /* Cream for borders */
  --hb-footer-bg: #481416;  /* Using Rust for the footer background */
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Montserrat", sans-serif;
  background: var(--hb-cream);
  color: var(--hb-dark);
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ── HEADER ─────────────────────────────── */
.hb-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--hb-gold-dk);
  transition: box-shadow 0.3s;
}
.hb-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.hb-header__inner {
  position: relative;
}
.hb-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 20px;
}
.hb-nav__left,
.hb-nav__right {
  flex: 1;
}
.hb-nav__right {
  display: flex;
  justify-content: flex-end;
}
.hb-nav__list {
  list-style: none;
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 0;
}
.hb-nav__list li a {
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hb-white);
  padding: 6px 14px;
  transition: color 0.25s;
}
.hb-nav__list li a:hover,
.hb-nav__list .current-menu-item a {
  color: var(--hb-gold);
}
.hb-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}
.hb-logo__img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s;
  filter: brightness(0) invert(1);
}
.hb-logo__img:hover {
  opacity: 0.8;
}
.hb-logo__name {
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  font-size: 2rem;
  font-weight: 400;
  color: var(--hb-dark);
  line-height: 1;
}
.hb-logo__sub {
  font-family: "Montserrat", sans-serif;
  font-size: 0.52rem;
  letter-spacing: 0.3em;
  color: var(--hb-gold);
  margin-top: 2px;
}
.hb-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hb-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--hb-white);
  transition: all 0.3s;
}
.hb-hamburger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hb-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.hb-hamburger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.hb-mobile-menu {
  display: none;
  background: var(--hb-cream);
  border-top: 1px solid var(--hb-border);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.hb-mobile-menu.is-open {
  max-height: 400px;
}
.hb-mobile-menu ul {
  list-style: none;
  padding: 16px 24px;
}
.hb-mobile-menu ul li a {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hb-dark);
  padding: 12px 0;
  border-bottom: 1px solid var(--hb-border);
  transition: color 0.25s;
}
.hb-mobile-menu ul li a:hover {
  color: var(--hb-gold);
}

/* ── SHARED ─────────────────────────────── */
.hb-section-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hb-dark);
  line-height: 1.15;
}
.hb-body-text {
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  color: var(--hb-muted);
  line-height: 1.85;
}
.hb-lead-italic {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  color: var(--hb-muted);
  line-height: 1.85;
}
.hb-muted-text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  color: var(--hb-muted);
  letter-spacing: 0.04em;
}
.hb-ornament {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--hb-gold-dk);
  font-size: 0.7rem;
}
.hb-ornament span {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--hb-gold-dk);
}
.hb-ornament i {
  font-style: normal;
}
.hb-ornament--center {
  justify-content: center;
}

/* ── BUTTONS ─────────────────────────────── */
.hb-btn {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 14px 36px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.hb-btn--bordered {
  background: var(--hb-cream);
  border: 1px solid var(--hb-gold-dk);
  color: var(--hb-gold-dk);
}
.hb-btn--bordered:hover {
  background: var(--hb-gold-dk);
  color: #fff;
}
.hb-btn--filled,
.hb-btn--gold {
  background: var(--hb-gold);
  border: 1px solid var(--hb-gold);
  color: #fff;
}
.hb-btn--filled:hover,
.hb-btn--gold:hover {
  background: var(--hb-gold-dk);
  border-color: var(--hb-gold);
  color: #fff;
}
.hb-link-arrow {
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hb-dark);
  transition: color 0.25s;
}
.hb-link-arrow:hover {
  color: var(--hb-gold);
}
.hb-text-link {
  color: var(--hb-gold);
}

/* ── HERO ─────────────────────────────── */
.hb-hero {
  min-height: 88vh;
  background: var(--hb-gold-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 60px;
}
.hb-hero__inner {
  max-width: 820px;
}
.hb-hero__title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.9rem, 5.5vw, 3.8rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hb-white);
  line-height: 1.1;
  margin-bottom: 28px;
  animation: fadeInUp 0.9s ease both;
}
.hb-hero__subtitle {
  font-family: "Montserrat", sans-serif;
  color: var(--hb-white);
  font-size: 1.15rem;
  line-height: 1.85;
  margin-bottom: 40px;
  animation: fadeInUp 1.1s 0.2s ease both;
}
.hb-hero__inner .hb-btn {
  animation: fadeInUp 1.2s 0.4s ease both;
}

/* ── VIDEO ─────────────────────────────── */
.hb-video {
  background: var(--hb-gold-dk);
  padding: 0 40px 0;
}
.hb-video__wrap {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.hb-video__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.hb-video__wrap:hover .hb-video__img {
  transform: scale(1.02);
}
.hb-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  background: rgba(255, 255, 255, 0.18);
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  backdrop-filter: blur(6px);
}
.hb-video__wrap:hover .hb-video__play {
  background: rgba(255, 255, 255, 0.32);
  transform: translate(-50%, -50%) scale(1.1);
}

/* ── SERVICES ─────────────────────────────── */
.hb-services {
  padding: 60px 40px;
}
.hb-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}
.hb-service-card {
  position: relative;
  overflow: hidden;
}
.hb-service-card--featured {
  margin-top: -40px;
}
.hb-service-card__img-wrap {
  overflow: hidden;
}

.hb-service-card__img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hb-service-card:hover .hb-service-card__img {
  transform: scale(1.07);
}
.hb-service-card__body {
  background: #fff;
  margin: -15px 20px 0;
  padding: 28px 24px 32px;
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.3s;
}
.hb-service-card:hover .hb-service-card__body {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.13);
}
.hb-service-card--featured .hb-service-card__body {
  margin-left: 0;
  margin-right: 0;
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.1);
}
.hb-service-card__title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hb-dark);
  margin-bottom: 12px;
}
.hb-service-card__text {
  font-family: "Montserrat", sans-serif;
  color: var(--hb-muted);
  font-size: 0.98rem;
  line-height: 1.75;
}
.hb-service-card__body .hb-ornament {
  justify-content: center;
  margin: 10px 0 14px;
}

/* ── CELEBRATE ─────────────────────────────── */
.hb-celebrate {
  padding: 80px 0;
  border-top: 1px solid var(--hb-border);
}
.hb-celebrate .hb-section-title {
  margin-bottom: 0;
}

/* ── PRODUCTS (stagger 3-col) ─────────────────────────────── */
.hb-products {
  padding: 0;
}
.hb-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.hb-product-col {
  position: relative;
  overflow: hidden;
}
.hb-product-col img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.hb-product-col:hover img {
  transform: scale(1.05);
}
.hb-product-col--mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 60px 0;
  overflow: visible;
}
.hb-product-col--mid img {
  height: 380px;
  width: 100%;
}
.hb-product-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.45));
  padding: 60px 28px 28px;
}
.hb-product-caption p {
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}
.hb-product-link {
  display: flex;
  justify-content: center;
  padding: 28px 0;
}
.hb-product-link--end {
  justify-content: center;
  padding: 28px 0;
}

/* ── PASSION ─────────────────────────────── */
.hb-passion {
  padding: 80px 0;
}
.hb-passion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  gap: 0;
}
.hb-passion__content {
  padding: 20px 50px 20px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hb-passion__content .hb-section-title {
  margin-bottom: 24px;
}
.hb-passion__content .hb-ornament {
  justify-content: center;
  margin-bottom: 24px;
}
.hb-passion__img {
  overflow: hidden;
}
.hb-passion__img img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  max-height: 600px;
  object-fit: cover;
  transition: transform 0.7s ease;
  object-position: top;
}
.hb-passion:hover .hb-passion__img img {
  transform: scale(1.04);
}
.hb-signature {
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--hb-dark);
  line-height: 1;
  margin-bottom: 6px;
  margin-top: 28px;
}

/* ── OUR PROJECT ─────────────────────────────── */
.hb-project {
  padding: 80px 0;
}
.hb-project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.hb-project-card {
  overflow: hidden;
  cursor: pointer;
}
.hb-project-card:nth-child(2) {
  margin-top: 60px;
}
.hb-project-card:nth-child(5) {
  margin-top: 60px;
}
.hb-project-card__img-wrap {
  overflow: hidden;
  position: relative;
}
.hb-project-card__img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hb-project-card:hover .hb-project-card__img {
  transform: scale(1.06);
}
.hb-project-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(157, 138, 114, 0);
  transition: background 0.3s;
}
.hb-project-card:hover .hb-project-card__overlay {
  background: rgba(157, 138, 114, 0.15);
}
.hb-project-card__body {
  padding: 20px 0 8px;
  text-align: center;
}
.hb-project-card__name {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hb-dark);
  margin-bottom: 4px;
  transition: color 0.25s;
}
.hb-project-card:hover .hb-project-card__name {
  color: var(--hb-gold);
}
.hb-project-card__cat {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  color: var(--hb-muted);
}

/* ── CTA DARK BANNER ─────────────────────────────── */
.hb-cta-banner {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hb-cta-banner__bg {
  position: absolute;
  inset: 0;
}
.hb-cta-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.hb-cta-banner:hover .hb-cta-banner__bg img {
  transform: scale(1.04);
}
.hb-cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 24, 18, 0.65);
}
.hb-cta-banner__content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}
.hb-cta-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hb-cta-text {
  font-family: "Montserrat", sans-serif;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* ── TESTIMONIAL ─────────────────────────────── */
.hb-testimonial {
  padding: 80px 0;
}
.hb-testimonial-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: 520px;
}
.hb-testimonial__img {
  overflow: hidden;
}
.hb-testimonial__img img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.hb-testimonial:hover .hb-testimonial__img img {
  transform: scale(1.04);
}
.hb-testimonial__content {
  padding: 48px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--hb-cream);
}
.hb-testimonial__content .hb-section-title {
  margin-bottom: 16px;
}
.hb-testimonial__desc {
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--hb-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}
.hb-testimonial__card {
  background: #eae6df;
  padding: 40px 36px 36px;
  text-align: center;
  width: 100%;
}
.hb-testimonial__quote-icon {
  font-family: "Montserrat", sans-serif;
  font-size: 4rem;
  color: var(--hb-gold);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.5;
}
.hb-testimonial__quote {
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--hb-muted);
  line-height: 1.85;
  margin-bottom: 24px;
}
.hb-stars {
  color: var(--hb-gold);
  font-size: 1.1rem;
  letter-spacing: 4px;
  margin-bottom: 16px;
}
.hb-testimonial__name {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  color: var(--hb-dark);
  margin-bottom: 4px;
}

/* ── PARTNERS ─────────────────────────────── */
.hb-partners {
  padding: 80px 0;
  border-top: 1px solid var(--hb-border);
}
.hb-partners-grid {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 60px;
  align-items: center;
}
.hb-partners__text-col .hb-section-title {
  margin-bottom: 20px;
}
.hb-partners__text-col .hb-body-text {
  margin-bottom: 32px;
}
.hb-partner-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.hb-partner-logo {
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--hb-muted);
  padding: 24px 16px;
  border-bottom: 1px solid var(--hb-border);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  transition: all 0.3s;
}
.hb-partner-logo:hover {
  border-color: var(--hb-gold);
  color: var(--hb-gold);
}

/* ── NEWS ─────────────────────────────── */
.hb-news {
  padding: 80px 0;
}
.hb-news-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 48px;
}
.hb-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.hb-news-card {
  overflow: hidden;
  cursor: pointer;
}
.hb-news-card__img-wrap {
  overflow: hidden;
  height: 260px;
}
.hb-news-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hb-news-card:hover .hb-news-card__img {
  transform: scale(1.06);
}
.hb-news-card__body {
  padding: 20px 0 0;
}
.hb-news-card__cat {
  font-family: "Montserrat", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--hb-gold);
  display: block;
  margin-bottom: 8px;
}
.hb-news-card__title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--hb-dark);
  line-height: 1.4;
  transition: color 0.25s;
}
.hb-news-card:hover .hb-news-card__title {
  color: var(--hb-gold);
}

/* ── NEWSLETTER ─────────────────────────────── */
.hb-newsletter {
  padding: 40px 0 80px;
}
.hb-newsletter__box {
  background: #eae6df;
  border: none;
  padding: 60px;
  position: relative;
  overflow: hidden;
}
.hb-newsletter__box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='200' viewBox='0 0 400 200'%3E%3Cpath d='M0,100 C80,40 160,160 240,100 C320,40 400,120 400,100' fill='none' stroke='%23d8d0c5' stroke-width='0.6' opacity='0.35'/%3E%3Cpath d='M0,130 C80,70 160,190 240,130 C320,70 400,150 400,130' fill='none' stroke='%23d8d0c5' stroke-width='0.6' opacity='0.25'/%3E%3Cpath d='M0,70 C80,10 160,130 240,70 C320,10 400,90 400,70' fill='none' stroke='%23d8d0c5' stroke-width='0.6' opacity='0.2'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.hb-newsletter__inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hb-newsletter__title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--hb-dark);
  margin-bottom: 12px;
}
.hb-newsletter__form {
  display: flex;
}
.hb-newsletter__input {
  flex: 1;
  background: var(--hb-cream);
  border: none;
  border-bottom: 1px solid var(--hb-border);
  border-radius: 0;
  padding: 14px 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: var(--hb-dark);
  outline: none;
}
.hb-newsletter__input::placeholder {
  color: var(--hb-muted);
}
.hb-newsletter__form .hb-btn {
  white-space: nowrap;
}

/* ── FOOTER ─────────────────────────────── */
.hb-footer {
  background: var(--hb-gold-dk);
  color: rgba(255, 255, 255, 0.75);
}
.hb-footer__top {
  padding: 72px 0 48px;
}
.hb-footer__grid {
  display: grid;
  grid-template-columns: 2.5fr 1.5fr 2fr;
  gap: 48px;
}
.hb-footer__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}
.hb-footer__logo-img {
  height: 55px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s;
}
.hb-footer__logo-img:hover {
  opacity: 0.8;
}
.hb-footer__logo-name {
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  font-size: 1.9rem;
  font-weight: 400;
  color: #fff;
  line-height: 1;
}
.hb-footer__logo-sub {
  font-family: "Montserrat", sans-serif;
  font-size: 0.48rem;
  letter-spacing: 0.3em;
  color: var(--hb-gold);
  margin-top: 3px;
}
.hb-footer__title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.hb-footer__desc {
  font-family: "Montserrat", sans-serif;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 24px;
}
.hb-footer__socials {
  display: flex;
  gap: 14px;
}
.hb-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.65);
  transition: all 0.3s;
}
.hb-footer__social-link svg {
  width: 16px;
  height: 16px;
}
.hb-footer__social-link:hover {
  border-color: var(--hb-white);
  color: var(--hb-white);
}
.hb-footer__links {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
.hb-footer__links li {
  margin-bottom: 10px;
}
.hb-footer__links a {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.25s;
}
.hb-footer__links a:hover {
  color: var(--hb-white);
}
.hb-footer__contact {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
.hb-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 14px;
  line-height: 1.6;
}
.hb-footer__contact svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--hb-white);
}
.hb-footer__newsletter {
  display: flex;
  margin-top: 16px;
}
.hb-footer__newsletter input {
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-right: none;
  padding: 12px 16px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  outline: none;
}
.hb-footer__newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.hb-footer__newsletter button {
  background: var(--hb-gold);
  border: none;
  padding: 12px 18px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.hb-footer__newsletter button:hover {
  background: var(--hb-gold-dk);
}
.hb-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}
.hb-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hb-footer__bottom p {
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
}
.hb-heart {
  color: var(--hb-gold);
}

/* ── ANIMATIONS ─────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hb-animate {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.hb-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .hb-services {
    padding: 60px 24px;
  }
  .hb-services-grid,
  .hb-products-grid {
    grid-template-columns: 1fr;
  }
  .hb-service-card--featured {
    margin-top: 0;
  }
  .hb-service-card__img-wrap {
    height: auto;
  }
  .hb-service-card__img {
    height: 340px;
  }
  .hb-product-col img {
    height: 340px;
  }
  .hb-product-col--mid {
    padding: 40px 24px 0;
  }
  .hb-product-col--mid img {
    height: 300px;
  }
  .hb-passion-grid,
  .hb-testimonial-grid {
    grid-template-columns: 1fr;
  }
  .hb-passion__content {
    padding: 48px 32px;
  }
  .hb-passion__img img {
    max-height: 450px;
  }
  .hb-testimonial__content {
    padding: 48px 32px;
  }
  .hb-project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hb-project-card:nth-child(2),
  .hb-project-card:nth-child(5) {
    margin-top: 0;
  }
  .hb-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hb-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .hb-partners-grid {
    grid-template-columns: 1fr;
  }
  .hb-partner-logos {
    grid-template-columns: repeat(3, 1fr);
  }
  .hb-newsletter__inner {
    grid-template-columns: 1fr;
  }
  .hb-cta-banner {
    min-height: 400px;
  }
}
@media (max-width: 767px) {
  /* ── Nav ── */
  .hb-nav {
    justify-content: center;
  }
  .hb-nav__left,
  .hb-nav__right {
    display: none;
  }
  .hb-hamburger {
    display: flex;
    position: absolute;
    right: 20px;
  }
  .hb-mobile-menu {
    display: block;
  }

  /* ── Hero ── */
  .hb-hero {
    min-height: 60vh;
    padding: 80px 16px 36px;
  }
  .hb-hero__title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  .hb-hero__subtitle {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }

  /* ── Video / Banner Image ── */
  .hb-video {
    padding: 0;
  }
  .hb-video__img {
    height: auto;
    width: 100%;
  }

  /* ── Services Cards ── */
  .hb-services {
    padding: 40px 16px;
  }
  .hb-services-grid {
    gap: 28px;
  }
  .hb-service-card__img {
    height: auto;
    object-fit: contain;
  }
  .hb-service-card__body {
    margin: -10px 12px 0;
    padding: 20px 16px 24px;
  }

  /* ── Event Extra ── */
  .hb-event-extra {
    padding: 28px 16px;
  }

  /* ── Celebrate / About ── */
  .hb-celebrate {
    padding: 48px 0;
  }
  .hb-celebrate .row {
    flex-direction: column;
  }

  /* ── Products 3-col ── */
  .hb-products-grid {
    grid-template-columns: 1fr;
  }
  .hb-product-col {
    overflow: hidden;
  }
  .hb-product-col img {
    height: 280px;
    width: 100%;
    object-fit: cover;
  }
  .hb-product-col--mid {
    padding: 20px 0 0;
  }
  .hb-product-col--mid img {
    height: 260px;
    width: 100%;
  }
  .hb-product-caption {
    padding: 40px 16px 16px;
  }
  .hb-product-caption p {
    font-size: 0.85rem;
  }

  /* ── Founders Header ── */
  .hb-founders-header {
    margin-top: 40px;
  }

  /* ── Passion / Founders ── */
  .hb-passion {
    padding: 40px 0;
  }
  .hb-passion-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hb-passion__content {
    padding: 32px 20px;
    order: 2;
  }
  .hb-passion__img {
    order: 1;
  }
  .hb-passion__img img {
    width: 100%;
    height: 320px;
    min-height: unset;
    max-height: 320px;
    object-fit: cover;
    object-position: top;
  }

  /* ── Project Gallery ── */
  .hb-project {
    padding: 48px 0;
  }
  .hb-project-grid,
  .hb-news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hb-project-card__img {
    height: 240px;
  }
  .hb-project-footer {
    margin-top: 32px;
  }

  /* ── Why Exhibit ── */
  .hb-why-exhibit {
    padding: 48px 0;
  }

  /* ── CTA Banner ── */
  .hb-cta-banner {
    min-height: 360px;
  }
  .hb-cta-banner__content {
    padding: 48px 0;
  }
  .hb-cta-title {
    font-size: 1.5rem;
  }
  .hb-cta-text {
    font-size: 0.9rem;
  }

  /* ── Footer ── */
  .hb-footer__grid {
    grid-template-columns: 1fr;
  }
  .hb-partner-logos {
    grid-template-columns: repeat(2, 1fr);
  }
  .hb-news-header {
    flex-direction: column;
    gap: 20px;
  }
  .hb-newsletter__box {
    padding: 36px 24px;
  }
  .hb-footer__bottom-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* ── Section Headers ── */
  .hb-section-header {
    margin-bottom: 32px;
  }
  .hb-section-title {
    font-size: 1.5rem;
  }
  .hb-body-text {
    font-size: 0.95rem;
  }

  /* ── Final CTA ── */
  .hb-final-cta {
    padding: 48px 0;
  }
  .hb-final-cta__title {
    font-size: 1.4rem;
  }
  .hb-final-cta__desc {
    font-size: 0.95rem;
  }
  .hb-final-cta__grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .hb-final-cta__card {
    width: 100%;
    max-width: 100%;
    min-width: unset;
    padding: 24px;
  }
  .hb-final-cta__actions {
    flex-direction: column;
  }
  .hb-final-cta__actions .hb-btn {
    width: 100%;
    text-align: center;
  }
}

/* celebrate grid */
.hb-celebrate__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 767px) {
  .hb-celebrate__grid {
    grid-template-columns: 1fr;
  }
}
/* container util */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.text-center {
  text-align: center;
}

/* ── UTILITIES & SHARED NEW CLASSES ─────────────────────────────── */
.hb-mb-16 { margin-bottom: 16px; }
.hb-mb-36 { margin-bottom: 36px; }
.hb-mb-0 { margin-bottom: 0; }
.hb-mt-8 { margin-top: 8px; }
.hb-ornament-mb { margin: 24px 0; }
.hb-founder-name { color: var(--hb-dark); }
.hb-project-card__cat { text-transform: none; }
.hb-news__header-desc { margin-top: 10px; }
.hb-news__btn { margin-top: 6px; }
.hb-newsletter__desc { margin-top: 10px; }
.hb-cta-banner__inner { max-width: 640px; }

/* ── SECTION HEADER ─────────────────────────────── */
.hb-section-header {
  margin-bottom: 48px;
}
.hb-section-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.5rem);
  color: var(--hb-dark);
  margin-top: 16px;
}
.hb-section-desc {
  margin-top: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ── EVENT EXTRA ─────────────────────────────── */
.hb-event-extra {
  padding: 40px 0;
  text-align: center;
}
.hb-event-extra__text {
  font-size: 1.125rem;
  max-width: 800px;
  margin: 0 auto;
}

/* ── WHY EXHIBIT ─────────────────────────────── */
.hb-why-exhibit {
  padding: 80px 0;
  background: var(--hb-cream);
}
.hb-why-exhibit__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.hb-why-exhibit__card {
  background: #fff;
  padding: 32px;
  border: 1px solid var(--hb-border);
}
.hb-why-exhibit__card-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  color: var(--hb-dark);
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .hb-why-exhibit__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .hb-why-exhibit__grid { grid-template-columns: 1fr; }
}

/* ── FOUNDERS HEADER ─────────────────────────────── */
.hb-founders-header {
  margin-top: 80px;
  margin-bottom: 0;
}

/* ── PROJECT FOOTER ─────────────────────────────── */
.hb-project-footer {
  margin-top: 48px;
}

/* ── WHO SHOULD ATTEND ─────────────────────────────── */
.hb-who-attend {
  padding: 80px 0;
  background: var(--hb-cream);
}
.hb-who-attend__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.hb-who-attend__title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  color: var(--hb-dark);
  margin-bottom: 16px;
  border-bottom: 1px solid var(--hb-border);
  padding-bottom: 8px;
}
.hb-who-attend__list {
  list-style: disc;
  margin-left: 0;
  line-height: 1.8;
}
.hb-who-attend__footer-text {
  font-size: 1.125rem;
  font-weight: 600;
}
@media (max-width: 991px) {
  .hb-who-attend__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .hb-who-attend__grid { grid-template-columns: 1fr; }
}

/* ── MARKETING & OUTREACH ─────────────────────────────── */
.hb-marketing {
  padding: 80px 0;
  background-color: #fff;
}
.hb-marketing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.hb-marketing__card {
  background: var(--hb-cream);
  padding: 40px 32px;
  border: 1px solid var(--hb-border);
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
}
.hb-marketing__card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-4px);
}
.hb-marketing__icon {
  font-family: "Montserrat", sans-serif;
  font-size: 3.5rem;
  font-style: italic;
  color: var(--hb-rust);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 8px;
}
.hb-marketing__card-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  color: var(--hb-dark);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.hb-marketing__footer-text {
  font-size: 1.125rem;
  font-weight: 600;
}
@media (max-width: 991px) {
  .hb-marketing__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .hb-marketing__grid { grid-template-columns: 1fr; }
}

/* ── FINAL CTA BANNER ─────────────────────────────── */
.hb-final-cta {
  position: relative;
  padding: 100px 0;
  text-align: center;
  color: #fff;
}
.hb-parallax-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.hb-final-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.75);
}
@media (max-width: 1024px) {
  .hb-parallax-bg { background-attachment: scroll; }
}
@media (max-width: 767px) {
  .hb-parallax-bg {
    background-size: 100% auto;
    background-position: top center;
  }
  .hb-final-cta__overlay {
    background: rgba(10, 10, 10, 0.6);
  }
}

.hb-final-cta__content {
  position: relative;
  z-index: 1;
}
.hb-ornament-line {
  background: rgba(255,255,255,0.3) !important;
}
.hb-ornament-icon {
  color: var(--hb-gold);
}
.hb-final-cta__title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 24px;
  color: #fff;
}
.hb-final-cta__desc {
  font-size: 1.125rem;
  margin-bottom: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f5f5f5;
}
.hb-final-cta__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 48px;
}
.hb-final-cta__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  min-width: 280px;
  flex: 1;
  max-width: 360px;
}
.hb-final-cta__card-icon {
  color: #fff;
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
}
.hb-final-cta__card-title {
  font-size: 1.25rem;
  display: block;
  margin-bottom: 4px;
}
.hb-final-cta__card-text {
  color: #ccc;
  font-size: 1rem;
}
.hb-final-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hb-btn--large {
  padding: 16px 36px;
}
.hb-btn--bordered-white {
  color: var(--hb-dark);
  border-color: rgba(255, 255, 255, 0.3);
}
.hb-btn--bordered-white:hover {
  background: #fff;
  color: var(--hb-dark);
}
.hb-final-cta__social {
  margin-top: 48px;
}
.hb-final-cta__social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 4px;
  transition: opacity 0.3s;
}
.hb-final-cta__social-link:hover {
  opacity: 0.7;
}

/* ── FINAL CTA FORM STYLING ─────────────────────────────── */
.hb-final-cta__card--form {
  text-align: left;
  max-width: 520px;
}
.hb-final-cta__card--form label,
.hb-final-cta__card--form p,
.hb-final-cta__card--form span {
  color: rgba(255, 255, 255, 0.95) !important;
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  width: 100%;
}
.hb-final-cta__card--form .wpcf7 {
  width: 100%;
}
.hb-final-cta__card--form .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 24px;
}
.hb-final-cta__card--form .wpcf7-text,
.hb-final-cta__card--form .wpcf7-email,
.hb-final-cta__card--form .wpcf7-textarea,
.hb-final-cta__card--form .wpcf7-select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  color: #fff;
  font-family: inherit;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.hb-final-cta__card--form .wpcf7-textarea {
  height: 120px;
}

.hb-final-cta__card--form .wpcf7-text:focus,
.hb-final-cta__card--form .wpcf7-email:focus,
.hb-final-cta__card--form .wpcf7-textarea:focus,
.hb-final-cta__card--form .wpcf7-select:focus {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  outline: none;
}
.hb-final-cta__card--form .wpcf7-text::placeholder,
.hb-final-cta__card--form .wpcf7-email::placeholder,
.hb-final-cta__card--form .wpcf7-textarea::placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.hb-final-cta__card--form .wpcf7-submit {
  width: 100%;
  background: #fff;
  color: var(--hb-rust);
  border: none;
  padding: 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 12px;
}
.hb-final-cta__card--form .wpcf7-submit:hover {
  background: #fdfdfd;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.hb-final-cta__card--form .wpcf7-not-valid-tip {
  color: #ffb4b4;
  font-size: 0.9rem;
  margin-top: 4px;
}
.hb-final-cta__card--form .wpcf7-response-output {
  border-radius: 4px;
  padding: 12px;
  margin: 16px 0 0 0;
  font-size: 0.95rem;
}
