/**
 * Hot House — site chrome v2.1 (luxury header + footer)
 */

@keyframes hh-chrome-shimmer {
  0%,
  100% {
    opacity: 0.25;
  }
  50% {
    opacity: 0.55;
  }
}

@keyframes hh-footer-glow {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 0.75;
  }
}

/* ── Utility strip — subtle magic ── */
body.hh-theme .hh-header-utility {
  position: relative;
  overflow: hidden;
  background: linear-gradient(92deg, #040f1a 0%, #061d33 42%, #0b2a45 100%) !important;
  border-bottom: none !important;
}

body.hh-theme .hh-header-utility::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(168, 139, 91, 0.11) 50%,
    transparent 65%
  );
  animation: hh-chrome-shimmer 9s ease-in-out infinite;
  pointer-events: none;
  will-change: opacity;
}

body.hh-theme .hh-header-utility::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 165, 116, 0.85), transparent);
  pointer-events: none;
}

body.hh-theme .hh-header-utility .e-con,
body.hh-theme .hh-header-utility .elementor-widget-text-editor {
  position: relative;
  z-index: 1;
}

body.hh-theme .hh-header-utility a {
  transition: color 0.22s ease, text-shadow 0.22s ease;
}

body.hh-theme .hh-header-utility a:hover {
  color: #e8d4b0 !important;
  text-shadow: 0 0 18px rgba(168, 139, 91, 0.35);
}

/* ── Main header — pinned via hh-header-scroll.js after utility scrolls away ── */
body.hh-theme .elementor-location-header,
body.hh-theme header.elementor-location-header {
  position: relative;
  z-index: 100000;
  background: transparent !important;
  overflow: visible !important;
}

body.hh-theme .hh-header-main {
  position: relative;
  top: 0;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%) !important;
  padding-block: 14px !important;
  z-index: 100001;
  box-shadow: 0 1px 0 rgba(6, 29, 51, 0.06);
  transition: box-shadow 0.25s ease, background 0.25s ease, backdrop-filter 0.25s ease;
  align-self: flex-start;
  width: 100%;
}

/* Stuck: glass nav — visual only, no height change (no jump). */
body.hh-theme.hh-header-stuck .hh-header-main {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 28px rgba(6, 29, 51, 0.12);
  border-bottom: 1px solid rgba(6, 29, 51, 0.06);
}

/* Fixed-nav fallback spacer (only when CSS sticky blocked) */
body.hh-theme .hh-header-sticky-spacer {
  display: block;
  width: 100%;
  pointer-events: none;
}

body.hh-theme .hh-header-main[data-hh-pinned='1'] {
  box-shadow: 0 6px 28px rgba(6, 29, 51, 0.12);
}

/* Utility bar scrolls away naturally — sticky keeps nav row only. */

body.hh-theme .hh-header-main .elementor-element-hhHdrLogoCol {
  flex: 0 0 auto !important;
  max-width: 248px !important;
  overflow: visible !important;
}

body.hh-theme .hh-header-main .elementor-element-hhHdrNavCol {
  flex: 1 1 auto !important;
  max-width: none !important;
  min-width: 0;
}

body.hh-theme .hh-header-main .elementor-element-hhHdrCartCol {
  flex: 0 0 auto !important;
  max-width: 88px !important;
}

body.hh-theme .hh-header-main .elementor-widget-theme-site-logo img {
  max-height: 76px;
  width: auto;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(6, 29, 51, 0.08));
  transform: scale(1.08);
  transform-origin: center center;
}

/* Nav — wider, single line feel */
body.hh-theme .hh-header-main .elementor-widget-nav-menu {
  width: 100%;
}

body.hh-theme .hh-header-main .elementor-nav-menu--main {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.15rem;
  width: 100%;
}

body.hh-theme .hh-header-main .elementor-nav-menu--main > li {
  margin-inline: 0.2rem;
  white-space: nowrap;
}

body.hh-theme .hh-header-main .elementor-nav-menu--main a {
  color: #061d33 !important;
  font-weight: 500;
  font-size: 0.94rem;
  letter-spacing: 0.02em;
  padding: 0.4rem 0.65rem !important;
  position: relative;
}

body.hh-theme .hh-header-main .elementor-nav-menu--main a::after {
  content: "";
  position: absolute;
  bottom: 0.15rem;
  inset-inline: 0.65rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, #a88b5b, transparent);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

body.hh-theme .hh-header-main .elementor-nav-menu--main a:hover::after,
body.hh-theme .hh-header-main .elementor-nav-menu--main .current-menu-item > a::after {
  transform: scaleX(1);
}

body.hh-theme .hh-header-main .elementor-nav-menu--main a:hover,
body.hh-theme .hh-header-main .elementor-nav-menu--main a:focus,
body.hh-theme .hh-header-main .elementor-nav-menu--main .current-menu-item > a {
  color: #8a6f3e !important;
}

body.hh-theme .hh-header-main .elementor-nav-menu--main .sub-menu {
  background: #fff !important;
  border: 1px solid rgba(168, 139, 91, 0.25);
  border-radius: 6px;
  box-shadow: 0 16px 40px rgba(6, 29, 51, 0.14);
  min-width: 230px;
  padding: 0.55rem 0;
}

body.hh-theme .elementor-location-header .e-con,
body.hh-theme .elementor-location-header .elementor-container {
  overflow: visible !important;
}

body.hh-theme .elementor-widget-nav-menu .elementor-nav-menu--main > li:hover,
body.hh-theme .elementor-widget-nav-menu .elementor-nav-menu--main > li:focus-within {
  z-index: 200;
}

body.hh-theme .elementor-widget-nav-menu .elementor-nav-menu--main .sub-menu {
  z-index: 201 !important;
}

body.hh-theme .hh-header-main .elementor-menu-cart__toggle_button {
  color: #061d33 !important;
  border-color: #dde1e5 !important;
  border-radius: 6px !important;
}

body.hh-theme .elementor-element-6e9118c,
body.hh-theme .elementor-element-527cf83,
body.hh-theme .elementor-element-f7ecf8d {
  display: none !important;
}

/* ── Footer decorative top — ember / gold warmth ── */
body.hh-theme .hh-footer-deco-top {
  background: linear-gradient(180deg, #12080a 0%, #061d33 100%) !important;
  padding: 0 !important;
  min-height: 0 !important;
}

body.hh-theme .hh-footer-warm-top__stripe {
  display: block;
  height: 2px;
  width: 100%;
}

body.hh-theme .hh-footer-warm-top__stripe--ember {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(168, 40, 32, 0.55) 20%,
    rgba(196, 80, 40, 0.9) 50%,
    rgba(168, 40, 32, 0.55) 80%,
    transparent 100%
  );
  box-shadow: 0 0 20px rgba(168, 40, 32, 0.4);
}

body.hh-theme .hh-footer-warm-top__stripe--gold {
  background: linear-gradient(
    90deg,
    transparent 5%,
    rgba(196, 165, 116, 0.35) 30%,
    rgba(232, 212, 176, 0.75) 50%,
    rgba(196, 165, 116, 0.35) 70%,
    transparent 95%
  );
  height: 1px;
  opacity: 0.85;
}

body.hh-theme .hh-chrome-deco--footer-top {
  background: linear-gradient(180deg, rgba(168, 40, 32, 0.18) 0%, transparent 100%);
  height: 32px;
  position: relative;
}

body.hh-theme .hh-chrome-deco--footer-top::before {
  color: #e8d4b0;
  content: "◆ ◆ ◆";
  font-size: 0.5rem;
  left: 50%;
  letter-spacing: 0.65em;
  opacity: 0.95;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

body.hh-theme .hh-chrome-deco--footer-top::after {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(168, 40, 32, 0.65),
    rgba(196, 165, 116, 0.85),
    rgba(168, 40, 32, 0.65),
    transparent
  );
  content: "";
  height: 1px;
  left: 8%;
  position: absolute;
  right: 8%;
  top: 50%;
}

/* ── Footer main grid — luxury layer ── */
body.hh-theme .elementor-location-footer,
body.hh-theme footer.elementor-location-footer {
  background: #061d33 !important;
  margin-top: 0;
  position: relative;
}

body.hh-theme .hh-footer-main {
  --hh-footer-bg-desktop: url("https://hothouse.co.il/wp-content/uploads/2026/05/footer-bg-desktop.webp");
  --hh-footer-bg-mobile: url("https://hothouse.co.il/wp-content/uploads/2026/05/footer-bg-mobile.webp");
  position: relative;
  overflow: hidden;
  background-color: #061d33 !important;
  background-image:
    linear-gradient(
      168deg,
      rgba(12, 6, 8, 0.62) 0%,
      rgba(6, 29, 51, 0.58) 45%,
      rgba(6, 29, 51, 0.52) 100%
    ),
    linear-gradient(
      115deg,
      rgba(168, 40, 32, 0.28) 0%,
      transparent 40%,
      rgba(196, 165, 116, 0.18) 60%,
      rgba(168, 40, 32, 0.22) 100%
    ),
    var(--hh-footer-bg-desktop);
  background-position: center 38%;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 0 !important;
  padding-block: 3rem 3.5rem !important;
  padding-top: 2.75rem !important;
  border-top: 1px solid rgba(168, 40, 32, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(196, 165, 116, 0.22),
    inset 0 -80px 120px rgba(168, 40, 32, 0.18);
}

body.hh-theme .hh-footer-main::before {
  animation: hh-footer-glow 7s ease-in-out infinite;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(168, 40, 32, 0.22) 0%, transparent 58%),
    radial-gradient(ellipse, rgba(196, 165, 116, 0.16) 0%, transparent 68%);
  content: "";
  height: 280px;
  left: 0;
  margin-inline: auto;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: -140px;
  width: min(820px, 92%);
}

body.hh-theme .hh-footer-main > .e-con::after {
  color: rgba(255, 255, 255, 0.55);
  content: "חום נכון מתחיל בהתאמה נכונה.";
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  margin-top: 2rem;
  padding-top: 1.25rem;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 1;
}

body.hh-theme .hh-footer-main > .e-con::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(168, 40, 32, 0.55),
    rgba(196, 165, 116, 0.75),
    rgba(168, 40, 32, 0.55),
    transparent
  );
  content: "";
  display: block;
  height: 2px;
  margin: 0 auto 0;
  position: relative;
  top: 0;
  width: min(360px, 72%);
  z-index: 1;
}

body.hh-theme .hh-footer-main::after {
  background:
    radial-gradient(ellipse 75% 50% at 50% 0%, rgba(168, 40, 32, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 100% 100%, rgba(168, 40, 32, 0.22) 0%, transparent 70%),
    radial-gradient(ellipse 45% 40% at 0% 85%, rgba(196, 165, 116, 0.12) 0%, transparent 65%);
  content: "";
  inset: 0;
  opacity: 1;
  pointer-events: none;
  position: absolute;
}

body.hh-theme .hh-footer-main > .e-con {
  position: relative;
  z-index: 1;
  flex-wrap: nowrap !important;
  align-items: stretch;
}

body.hh-theme .hh-footer-main > .e-con > .e-con {
  align-self: stretch;
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
  min-width: 0;
}

body.hh-theme .hh-footer-main > .e-con > .e-con > .elementor-widget-text-editor,
body.hh-theme .hh-footer-main > .e-con > .e-con > .elementor-widget-theme-site-logo {
  flex-shrink: 0;
}

body.hh-theme .hh-footer-main > .e-con > .e-con > .elementor-widget-text-editor {
  flex: 1 1 auto;
}

@media (min-width: 1024px) {
  body.hh-theme .hh-footer-main > .e-con > .e-con.hh-footer-col {
    min-height: 280px;
  }

  body.hh-theme .hh-footer-links {
    flex: 1 1 auto;
  }
}

/* Footer link list — ember bullets (no icon boxes) */
body.hh-theme .hh-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

body.hh-theme .hh-footer-link {
  margin: 0 0 0.5rem;
  padding-inline-end: 0;
  padding-inline-start: 1.05rem;
  position: relative;
}

body.hh-theme .hh-footer-link::before {
  background: linear-gradient(145deg, #e85c24 0%, #d4a04a 55%, #c4a574 100%);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(232, 92, 36, 0.45);
  content: "";
  height: 6px;
  inset-inline-start: 0;
  position: absolute;
  top: 0.62em;
  transform: translateY(-50%);
  width: 6px;
}

body.hh-theme .hh-footer-link a {
  display: inline-block;
}

body.hh-theme .hh-footer-col-title {
  margin: 0 0 1rem;
  padding-inline-start: 1.15rem;
  position: relative;
}

body.hh-theme .hh-footer-col-title::before {
  background: linear-gradient(145deg, #f06a30 0%, #e85c24 40%, #c4a574 100%);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(232, 92, 36, 0.55);
  content: "";
  height: 8px;
  inset-inline-start: 0;
  position: absolute;
  top: 0.55em;
  transform: translateY(-50%);
  width: 8px;
}

body.hh-theme .hh-footer-link__icon,
body.hh-theme .hh-footer-col-title__icon,
body.hh-theme .hh-footer-cta__icons {
  display: none !important;
}

body.hh-theme .hh-fi {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 3px;
  background: rgba(168, 139, 91, 0.2);
  border: 1px solid rgba(168, 139, 91, 0.35);
  position: relative;
}

body.hh-theme .hh-fi::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: #c4a574;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

body.hh-theme .hh-fi--hearth::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 22c-3.5-2.5-6-5.2-6-9.2 0-2.4 1.2-4.4 3-5.8.6 1.4 1.6 2.4 2.8 2.8C10.4 7.8 9 5.6 9 3c2.2 1.2 4 3.4 4.8 6 .8-1.2 2-2.2 3.4-2.8 1.2 1.6 1.8 3.6 1.8 5.8 0 4-2.5 6.7-6 9.2z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 22c-3.5-2.5-6-5.2-6-9.2 0-2.4 1.2-4.4 3-5.8.6 1.4 1.6 2.4 2.8 2.8C10.4 7.8 9 5.6 9 3c2.2 1.2 4 3.4 4.8 6 .8-1.2 2-2.2 3.4-2.8 1.2 1.6 1.8 3.6 1.8 5.8 0 4-2.5 6.7-6 9.2z'/%3E%3C/svg%3E");
}

body.hh-theme .hh-fi--fuel::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M4 20h16v2H4v-2zm2-2h12l-1-8H7l-1 8zm3-10h4V6h-4v2z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M4 20h16v2H4v-2zm2-2h12l-1-8H7l-1 8zm3-10h4V6h-4v2z'/%3E%3C/svg%3E");
}

body.hh-theme .hh-fi--care::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M22 12l-4-4v3H9v2h9v3l4-4zM2 6h8v2H4v8h6v2H2V6z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M22 12l-4-4v3H9v2h9v3l4-4zM2 6h8v2H4v8h6v2H2V6z'/%3E%3C/svg%3E");
}

body.hh-theme .hh-fi--install::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6zm-1 2l5 5h-5V4zM8 13h8v2H8v-2zm0 4h5v2H8v-2z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6zm-1 2l5 5h-5V4zM8 13h8v2H8v-2zm0 4h5v2H8v-2z'/%3E%3C/svg%3E");
}

body.hh-theme .hh-fi--parts::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2l3 7h7l-5.5 4.5 2 7L12 16l-6.5 4.5 2-7L2 9h7l3-7z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2l3 7h7l-5.5 4.5 2 7L12 16l-6.5 4.5 2-7L2 9h7l3-7z'/%3E%3C/svg%3E");
}

body.hh-theme .hh-fi--info::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z'/%3E%3C/svg%3E");
}

body.hh-theme .hh-footer-main .elementor-widget-theme-site-logo {
  margin-bottom: 1rem;
}

body.hh-theme .hh-footer-main .elementor-widget-theme-site-logo img {
  max-height: 100px;
  width: auto;
  min-width: 120px;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.3));
}

body.hh-theme .hh-footer-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #c4a574;
  text-transform: uppercase;
}

body.hh-theme .hh-footer-brand-title {
  margin: 0 0 0.85rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
}

body.hh-theme .hh-footer-brand-lead {
  margin: 0;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  max-width: 28ch;
}

body.hh-theme .hh-footer-contact-details {
  margin-top: 1rem;
}

body.hh-theme .hh-footer-contact__row {
  margin: 0.3rem 0;
  font-size: 0.92rem;
}

body.hh-theme .hh-footer-contact__row a {
  color: #e8d4b0 !important;
  text-decoration: none;
}

body.hh-theme .hh-footer-contact__row a:hover {
  color: #ffffff !important;
}

body.hh-theme .hh-footer-contact__addr {
  color: rgba(255, 255, 255, 0.7);
}

body.hh-theme .hh-footer-main .hh-footer-col-title {
  border-bottom: 1px solid rgba(168, 40, 32, 0.35);
  box-shadow: 0 1px 0 rgba(196, 165, 116, 0.12);
  color: #e8d4b0 !important;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding-bottom: 0.55rem;
}

body.hh-theme .hh-footer-main .elementor-widget-text-editor p {
  margin: 0 0 0.4rem;
}

body.hh-theme .hh-footer-main a {
  color: rgba(255, 255, 255, 0.82) !important;
  text-decoration: none;
  transition: color 0.2s ease, padding-inline-start 0.2s ease;
}

body.hh-theme .hh-footer-main a:hover {
  color: #fff !important;
  padding-inline-start: 4px;
}

/* ── Footer CTA — premium card (above link columns) ── */
body.hh-theme .hh-footer-cta-band {
  position: relative;
  background: linear-gradient(180deg, #12080a 0%, #061d33 55%, #040f1a 100%) !important;
  padding-block: 2.75rem 2.25rem !important;
  border-block: none !important;
  border-bottom: 1px solid rgba(168, 40, 32, 0.35) !important;
  overflow: hidden;
}

body.hh-theme .hh-footer-cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 50% 0%, rgba(168, 40, 32, 0.2), transparent 65%),
    radial-gradient(ellipse 80% 120% at 50% 100%, rgba(196, 165, 116, 0.1), transparent 70%);
  pointer-events: none;
}

body.hh-theme .hh-prefooter-stripes {
  display: block;
  margin: 0 auto 1.25rem;
  max-width: min(920px, 92%);
}

body.hh-theme .hh-footer-cta__icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1rem;
  margin: 0 auto 1.25rem;
  max-width: 520px;
}

body.hh-theme .hh-footer-cta__icon {
  align-items: center;
  background: rgba(168, 40, 32, 0.1);
  border: 1px solid rgba(196, 165, 116, 0.22);
  border-radius: 50%;
  box-shadow: none;
  display: inline-flex;
  height: 36px;
  justify-content: center;
  padding: 0;
  width: 36px;
}

body.hh-theme .hh-footer-cta--premium {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

body.hh-theme .hh-footer-cta__card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  padding: 1.75rem 2rem;
  border-radius: 12px;
  border: 1px solid rgba(168, 40, 32, 0.4);
  background: linear-gradient(
    145deg,
    rgba(18, 8, 10, 0.92) 0%,
    rgba(11, 42, 69, 0.94) 45%,
    rgba(6, 29, 51, 0.98) 100%
  );
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -24px 48px rgba(168, 40, 32, 0.12);
}

body.hh-theme .hh-footer-cta__copy {
  flex: 1 1 320px;
  text-align: right;
}

body.hh-theme .hh-footer-cta__eyebrow {
  display: inline-block;
  margin: 0 0 0.5rem;
  padding: 0.2rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e8d4b0;
  border: 1px solid rgba(196, 165, 116, 0.4);
  border-radius: 2px;
}

body.hh-theme .hh-footer-cta__title {
  margin: 0 0 0.5rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
}

body.hh-theme .hh-footer-cta__lead {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  max-width: 42ch;
}

body.hh-theme .hh-footer-cta__actions {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
  min-width: 200px;
}

body.hh-theme .hh-footer-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none !important;
  border-radius: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

body.hh-theme .hh-footer-cta__btn--primary {
  background: linear-gradient(135deg, #c4a574 0%, #a88b5b 55%, #8a6f3e 100%);
  color: #fff !important;
  border: none;
  box-shadow: 0 10px 28px rgba(168, 139, 91, 0.35);
}

body.hh-theme .hh-footer-cta__btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(168, 139, 91, 0.45);
  color: #fff !important;
}

body.hh-theme .hh-footer-cta__btn--outline {
  background: transparent;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

body.hh-theme .hh-footer-cta__btn--outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: #c4a574;
  color: #fff !important;
}

body.hh-theme .hh-footer-cta__link {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65) !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

body.hh-theme .hh-footer-cta__link:hover {
  color: #e8d4b0 !important;
}

/* ── Legal bar / socket ── */
body.hh-theme .hh-footer-legal {
  background: linear-gradient(180deg, #0a0608 0%, #030a12 100%) !important;
  border-top: 1px solid rgba(168, 40, 32, 0.35) !important;
  position: relative;
  overflow: hidden;
}

body.hh-theme .hh-footer-socket {
  margin: 0;
  padding: 0.25rem 0 0.15rem;
  position: relative;
  text-align: center;
  z-index: 1;
}

body.hh-theme .hh-footer-socket__glow {
  background: radial-gradient(ellipse 80% 120% at 50% 0%, rgba(168, 40, 32, 0.22), transparent 70%);
  height: 48px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}

body.hh-theme .hh-footer-socket__stripes {
  margin: 0 auto 1rem;
  max-width: min(480px, 88%);
}

body.hh-theme .hh-footer-socket__links {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  margin: 0 0 0.5rem;
}

body.hh-theme .hh-footer-socket__links a {
  color: rgba(255, 255, 255, 0.68) !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

body.hh-theme .hh-footer-socket__copy {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  margin: 0 0 0.35rem;
}

body.hh-theme .hh-footer-socket__credit {
  color: rgba(255, 255, 255, 0.38);
  font-size: 12px;
  letter-spacing: 0.04em;
  margin: 0;
}

body.hh-theme .hh-footer-socket__credit a {
  color: rgba(196, 165, 116, 0.85) !important;
  font-weight: 500;
  text-decoration: none;
}

body.hh-theme .hh-footer-socket__credit a:hover,
body.hh-theme .hh-footer-socket__links a:hover {
  color: #e8d4b0 !important;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  body.hh-theme .hh-footer-main > .e-con {
    flex-wrap: wrap !important;
  }

  body.hh-theme .hh-footer-main > .e-con > .e-con {
    flex: 1 1 45%;
    min-width: 200px;
  }
}

@media (max-width: 1024px) {
  body.hh-theme .hh-header-utility .elementor-element-hhHdrUtilC {
    display: none;
  }

  body.hh-theme .hh-footer-main {
    padding-block: 2.5rem !important;
  }
}

@media (max-width: 767px) {
  body.hh-theme .hh-header-main .elementor-widget-theme-site-logo img {
    max-height: 56px;
  }

  body.hh-theme .hh-header-utility {
    font-size: 12px;
  }

  body.hh-theme .hh-footer-main {
    background-image:
      linear-gradient(168deg, rgba(12, 6, 8, 0.68) 0%, rgba(6, 29, 51, 0.62) 100%),
      linear-gradient(115deg, rgba(168, 40, 32, 0.32) 0%, transparent 50%, rgba(196, 165, 116, 0.2) 100%),
      var(--hh-footer-bg-mobile);
    background-position: center bottom;
  }

  body.hh-theme .hh-footer-cta__card {
    flex-direction: column;
    padding: 1.35rem 1.25rem;
    text-align: center;
  }

  body.hh-theme .hh-footer-cta__copy {
    text-align: center;
  }

  body.hh-theme .hh-footer-cta__lead {
    margin-inline: auto;
  }

  body.hh-theme .hh-footer-cta__actions {
    width: 100%;
    min-width: 0;
  }

  body.hh-theme .hh-footer-cta__btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.hh-theme .hh-header-utility::before,
  body.hh-theme .hh-footer-main::before {
    animation: none;
  }
}
