.elementor-149 .elementor-element.elementor-element-a9a323d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-149 .elementor-element.elementor-element-a9a323d:not(.elementor-motion-effects-element-type-background), .elementor-149 .elementor-element.elementor-element-a9a323d > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-149 .elementor-element.elementor-element-4603f5a{width:100%;max-width:100%;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-4603f5a *//* ===== General Variables & Footer Styles ===== */
:root {
  /* FIX: Added CSS variables for easier theme management */
  --color-background: #000000;
  --color-text: #F4F3ED;
  --color-accent: #492E02;
}

.site-footer {
  background: var(--color-background);
  color: var(--color-text);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.25rem 2rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.footer-col h4 {
  margin: 0 0 .75rem;
  font-size: 1.05rem;
  color: var(--color-text);
}

/* ===== Column Specifics ===== */

/* Brand */
.footer-brand .footer-logo img {
  height: 56px;
  width: auto;
  display: block;
  /* FIX: Removed useless filter rule */
}

.brand-text {
  margin: .6rem 0 0;
  max-width: 36ch;
  opacity: .85;
  line-height: 1.55;
}

/* Links */
.footer-links ul,
.footer-contact ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin: .45rem 0;
}

.footer-links a {
  color: var(--color-text);
  text-decoration: none;
  opacity: .86;
  transition: color .25s ease, transform .25s ease;
  display: inline-block; /* Helps prevent layout shifts on transform */
}

.footer-links a:hover {
  color: var(--color-accent);
  transform: translateX(3px);
}

/* Contact */
.footer-contact .row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: .6rem;
  align-items: start;
  margin: .55rem 0;
}

.footer-contact a {
  color: var(--color-text);
  text-decoration: none;
  opacity: .9;
  transition: color .25s ease;
}

.footer-contact a:hover {
  color: var(--color-accent);
}

.ico {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--color-accent);
}

.ico svg {
  width: 100%;
  height: 100%;
}

/* Socials */
.socials {
  display: flex;
  gap: .6rem;
  margin-top: .8rem;
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: var(--color-text);
  text-decoration: none;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.socials a:hover {
  background: var(--color-text);
  color: var(--color-accent);
  transform: translateY(-3px);
}

.socials svg {
  width: 18px;
  height: 18px;
}

/* Bottom strip */
.footer-bottom {
  border-top: 1px solid rgba(244, 243, 237, .15);
  text-align: center;
  padding: 1.25rem 1rem;
  font-size: .92rem;
  opacity: .9;
}

/* FIX: This class now exists in the HTML */
.footer-bottom .credit {
  opacity: .7;
  margin: .4rem 0 0;
}

/* Mobile */
@media (max-width: 720px) {
  .brand-text {
    max-width: unset;
  }
  .footer-inner {
    padding: 2.4rem 1.25rem 1.6rem;
  }
  .footer-bottom {
    font-size: .88rem;
    padding: 1rem;
  }
}/* End custom CSS */