/* Koondatud saidi stiilid – genereeritud build-site-bundle.js skriptiga. */

/* ===== ALGUS: assets/css/site-header-footer.css ===== */
/**
 * Iseseisev header ja footer – ei sõltu Elementori ega vanadest post-65/post-72 CSS-ist.
 * Kasutamine: galerii leht ja teised lehed, kes ei taha Elementori headerit/footeri.
 */
:root {
  --site-accent: #B8823A;
  --site-accent-hover: #A06F2F;
  --site-accent-active: #8F6128;
  --site-header-bg: #fdfcfa;
  --site-header-shadow: 0 0 10px rgba(63, 63, 63, 0.12);
  --site-nav-color: #272b2c;
  --site-nav-hover: #B8823A;
  --site-footer-bg: #1a1917;
  --site-footer-text: #e9e9e9;
  --site-footer-heading: #B8823A;
  --site-footer-border: rgba(255, 255, 255, 0.15);
  --site-header-h: 80px;
  --site-header-h-hero: 80px;
  --site-header-h-scrolled: 80px;
  --site-header-pad-x: 32px;
  --site-header-group-gap: 24px;
  --site-header-action-gap: 16px;
  --site-nav-gap: 32px;
}

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--site-header-bg);
  box-shadow: var(--site-header-shadow);
  font-family: var(--pm-font, "DM Sans", sans-serif);
  isolation: isolate;
  overflow-x: clip;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}
.site-header.is-open {
  overflow: visible;
}

.site-header__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--site-header-group-gap);
  max-width: 1400px;
  margin: 0 auto;
  min-height: var(--site-header-h);
  padding-inline: var(--site-header-pad-x);
  box-sizing: border-box;
  transition: min-height 0.25s ease, padding 0.25s ease;
}

@media (min-width: 1025px) {
  .site-header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 24px;
    row-gap: 0;
  }

  .site-header__logo {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .site-header__nav {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    width: max-content;
    max-width: 100%;
    min-width: 0;
    margin: 0;
  }

  .site-header__actions,
  .site-header__inner > .site-header__lang {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .site-header__toggle {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .site-header__inner {
    min-height: 72px;
    padding-inline: 20px;
    gap: 12px;
  }

  .site-header__nav,
  .site-header__actions,
  .site-header__lang {
    display: none !important;
  }

  .site-header__logo {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 56px);
  }

  .site-header .site-header__toggle {
    display: flex;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    margin: 0;
    margin-left: auto;
    padding: 0;
    border-radius: 10px;
    overflow: visible;
    align-self: center;
  }
}

@media (max-width: 768px) {
  .site-header {
    overflow-x: visible;
  }

  .site-header__inner {
    min-height: 72px;
    padding-inline: 20px;
  }

  .site-header__logo img {
    height: 24px;
    max-width: min(162px, 100%);
  }
}

.site-header__logo {
  flex-shrink: 0;
  margin: 0;
  display: flex;
  align-items: center;
  min-width: 0;
}
.site-header__logo a {
  display: flex;
  align-items: center;
  line-height: 0;
}
.site-header__logo img {
  display: block;
  height: 34px;
  width: auto;
  min-width: 0;
  max-width: 200px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .site-header__logo img { height: 24px; max-width: 130px; }
}

/* Desktop nav – peidetud tablet/mobiilil */
.site-header__nav {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
@media (min-width: 1025px) {
  .site-header__nav {
    display: flex;
  }
}

.site-header__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: var(--site-nav-gap);
  white-space: nowrap;
}
.site-header__nav-list li {
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  white-space: nowrap;
}
.site-header__nav-list a {
  display: inline-flex;
  align-items: center;
  padding: 10px 0;
  color: var(--site-nav-color) !important;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.site-header__nav-list a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 100%;
  max-width: 32px;
  height: 2px;
  background: var(--site-accent);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center center;
  transition: transform 0.2s ease, background 0.2s ease;
}
.site-header__nav-list a:hover,
.site-header__nav-list a:focus {
  color: var(--site-nav-hover) !important;
}
.site-header__nav-list a:hover::after,
.site-header__nav-list a:focus::after {
  transform: translateX(-50%) scaleX(1);
}
.site-header__nav-list .current a {
  color: #1a1d1e !important;
  font-weight: 500;
}
.site-header__nav-list .current a::after,
.site-header__nav-list a.is-active::after {
  transform: translateX(-50%) scaleX(1);
}
.site-header__nav-list a.is-active {
  color: #1a1d1e !important;
  font-weight: 500;
}

/* Teenused dropdown */
.site-header__nav-list .has-sub {
  position: relative;
}
.site-header__nav-list .has-sub > ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: 12px 0;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 10;
}
.site-header__nav-list .has-sub:hover > ul,
.site-header__nav-list .has-sub:focus-within > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-header__nav-list .has-sub > ul li { margin: 0; }
.site-header__nav-list .has-sub > ul a {
  padding: 6px 16px;
  color: var(--site-nav-color);
  font-size: 14px;
}
.site-header__nav-list .has-sub > ul a:hover {
  color: var(--site-nav-hover);
  background: rgba(0,0,0,0.03);
}

/* Telefoni ikoon – headeris nii desktop kui mobiil; ümbrik peidetud mobiilis */
.site-header__phone {
  flex-shrink: 0;
  margin-left: 10px;
}
@media (max-width: 1024px) {
  /* Mobile header: hide contact icons (phone + envelope) */
  .site-header__contact-icons { display: none !important; }
}
.site-header__phone a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--site-nav-color);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}
.site-header__phone + .site-header__phone {
  margin-left: 10px;
}
.site-header__phone a:hover {
  color: var(--site-nav-hover);
}
.site-header__phone svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Email variant – icon can link to contact, text to mailto */
.site-header__email {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-header__email .site-header__icon-link {
  gap: 0;
}
.site-header__email .site-header__icon-link svg {
  margin: 0;
}

/* Language switcher – segmented pill */
.site-header__lang {
  flex-shrink: 0;
  margin: 0;
}

.site-header__lang-track {
  position: relative;
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  width: auto;
  min-width: 72px;
  height: 36px;
  padding: 3px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(39, 43, 44, 0.12);
  box-sizing: border-box;
  isolation: isolate;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}

.site-header__lang-track:hover {
  border-color: rgba(39, 43, 44, 0.2);
}

.site-header__lang-track::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(50% - 3px);
  height: calc(100% - 6px);
  border-radius: 999px;
  background: var(--site-accent);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}

.site-header__lang-track:has(.site-header__lang-opt:nth-child(2).site-header__lang-active)::before {
  transform: translateX(100%);
}

.site-header__lang-opt {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  color: var(--site-nav-color);
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.site-header__lang-opt.site-header__lang-active {
  color: #272b2c !important;
}

.site-header__lang-opt:not(.site-header__lang-active):hover {
  color: var(--site-nav-hover);
}

/* Desktop – tighten spacing before anything can wrap */
@media (min-width: 1025px) and (max-width: 1320px) {
  :root {
    --site-nav-gap: 24px;
  }

  .site-header__nav-list a {
    font-size: 16px;
  }

  .site-header__logo img {
    height: 30px;
    max-width: 168px;
  }
}

@media (min-width: 1025px) and (max-width: 1180px) {
  .site-header__call-btn {
    padding-inline: 18px;
    font-size: 13px;
  }

  .site-header__quote-btn {
    padding-inline: 20px;
    font-size: 13px;
  }

  .site-header__actions,
  .site-header__inner > .site-header__lang {
    gap: 12px;
  }
}

/* Header actions row (desktop CTAs) */
.site-header__actions {
  display: none;
  align-items: center;
  gap: var(--site-header-action-gap, 16px);
  flex-shrink: 0;
  white-space: nowrap;
}

@media (min-width: 1025px) {
  .site-header__actions {
    display: flex;
  }

  .site-header__contact-icons {
    display: none;
  }

  .site-header__inner > .site-header__lang {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
  }
}

.site-header__call-btn,
.site-header__quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  height: 48px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, backdrop-filter 0.22s ease;
}

.site-header__call-btn {
  padding-inline: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff !important;
  background: rgba(24, 24, 24, 0.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-header__quote-btn {
  padding-inline: 28px;
  border: 1px solid #b8823a;
  background: #b8823a;
  color: #fff !important;
  box-shadow: 0 8px 22px rgba(184, 130, 58, 0.28);
}

.site-header__call-btn:hover,
.site-header__call-btn:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.site-header__quote-btn:hover,
.site-header__quote-btn:focus-visible {
  background: #a06f2f;
  border-color: #a06f2f;
}

/* Legacy plain-text lang (fallback) */
.site-header__lang a:not(.site-header__lang-opt) {
  color: var(--site-nav-color);
  text-decoration: none;
}
.site-header__lang .site-header__lang-active:not(.site-header__lang-opt) {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--site-nav-hover);
}
.site-header__lang-sep {
  display: none;
}

/* Header contact icons wrapper (phone + mail) */
.site-header__contact-icons {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-left: 10px;
  white-space: nowrap;
}
/* When wrapped, margins must not add extra spacing */
.site-header__contact-icons .site-header__phone {
  margin-left: 0;
  display: inline-flex;
  align-items: center;
}
.site-header__contact-icons .site-header__phone + .site-header__phone {
  margin-left: 0;
}
/* Keep language switcher and contact icons tight */
.site-header__lang + .site-header__contact-icons {
  margin-left: 0;
}
@media (max-width: 1024px) {
  .site-header__lang { display: none; }
}
.site-header__lang-mobile {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  margin-top: 0;
  margin-bottom: 8px;
  border-top: 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  order: -1;
}
.site-header__lang-mobile a {
  display: inline-flex;
  padding: 0;
  text-decoration: none;
  color: rgba(255,255,255,0.95);
}
.site-header__lang-mobile a[aria-current="page"],
.site-header__lang-mobile a[aria-current="true"] {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-header__lang-mobile span[aria-hidden="true"] {
  opacity: 0.8;
}

/* Mobiilimenüü toggle – ilma kastita ja ruudu servadeta, ainult ikoon */
.site-header .site-header__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0 0 0 auto;
  background: #ffffff;
  border: none;
  border-radius: 0;
  color: var(--site-nav-color);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  z-index: 1002;
  flex-shrink: 0;
}
.site-header .site-header__toggle:hover {
  color: var(--site-nav-color);
  background: #ffffff;
}
@media (max-width: 1024px) {
  .site-header .site-header__toggle { display: flex; }
}
.site-header .site-header__toggle svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  display: block;
}
.site-header .site-header__toggle .icon-close {
  display: none;
}
.site-header.is-open .site-header__toggle .icon-open {
  display: none;
}
.site-header.is-open .site-header__toggle .icon-close {
  display: block;
}

/* Mobiilimenüü (dropdown) */
.site-header__mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--site-footer-bg);
  max-height: calc(100vh - 60px);
  overflow-y: auto;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
@media (max-width: 1024px) {
  .site-header__mobile {
    display: block;
    transition: opacity 0.2s ease, visibility 0.2s ease, max-height 0.25s ease;
  }
  .site-header__mobile:not(.is-open) {
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
  }
  .site-header__mobile.is-open {
    visibility: visible;
    opacity: 1;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    pointer-events: auto;
    position: fixed;
    top: var(--pm-header-height, 56px);
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10000;
  }
}
body.site-header-menu-open {
  overflow: hidden;
}
.site-header__mobile-nav {
  list-style: none;
  margin: 0;
  padding: 12px 0 24px;
  display: flex;
  flex-direction: column;
}
.site-header__mobile-nav li { margin: 0; }
.site-header__mobile-nav a {
  display: block;
  padding: 12px 32px;
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  font-size: 16px;
}
.site-header__mobile-nav a:hover,
.site-header__mobile-nav a:focus {
  color: var(--site-accent);
  background: rgba(255,255,255,0.05);
}
.site-header__mobile-nav .current a {
  color: #fff;
  font-weight: 600;
}
.site-header__mobile-nav .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0 0 0 16px;
  border-left: 2px solid rgba(255,255,255,0.2);
}
.site-header__mobile-nav .sub-menu a {
  padding: 8px 24px 8px 16px;
  font-size: 15px;
}

/* Mobile menu: keep language switcher on one line and
   align phone/mail icons to the bottom with consistent padding */
.site-header__mobile-contact {
  padding: 12px 32px;
}
.site-header__mobile-contact a.site-header__icon-only {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 4px;
  line-height: 0;
}
.site-header__mobile-contact svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
/* Push both contact icons to the bottom as a group */
.site-header__mobile-nav li.site-header__mobile-contact:not(.site-header__mobile-email) {
  margin-top: auto;
}

/* Homepage hero: subtle entrance + hover motion */
@media (prefers-reduced-motion: no-preference) {
  .elementor-12 .elementor-element.elementor-element-e40179e .elementor-element-95f94c8,
  .elementor-12 .elementor-element.elementor-element-e40179e .elementor-element-8705a04,
  .elementor-12 .elementor-element.elementor-element-e40179e .elementor-element-e64fb66,
  .elementor-12 .elementor-element.elementor-element-e40179e .elementor-element-aa858d4 {
    opacity: 0;
    transform: translateY(10px);
    animation: hero-fade-up 0.55s ease-out forwards;
    will-change: transform, opacity;
  }

  .elementor-12 .elementor-element.elementor-element-e40179e .elementor-element-95f94c8 { animation-delay: 0.08s; }
  .elementor-12 .elementor-element.elementor-element-e40179e .elementor-element-8705a04 { animation-delay: 0.16s; }
  .elementor-12 .elementor-element.elementor-element-e40179e .elementor-element-e64fb66 { animation-delay: 0.24s; }
  .elementor-12 .elementor-element.elementor-element-e40179e .elementor-element-aa858d4 { animation-delay: 0.32s; }
}

.elementor-12 .elementor-element.elementor-element-e40179e .elementor-element-e64fb66 .elementor-button {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.elementor-12 .elementor-element.elementor-element-e40179e .elementor-element-e64fb66 .elementor-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.elementor-12 .elementor-element.elementor-element-e40179e .elementor-element-aa858d4 .elementor-social-icon {
  transition: transform 0.18s ease;
}
.elementor-12 .elementor-element.elementor-element-e40179e .elementor-element-aa858d4 .elementor-social-icon:hover {
  transform: scale(1.05);
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--site-footer-bg);
  color: var(--site-footer-text);
  font-family: var(--pm-font, "DM Sans", sans-serif);
}
.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 767px) {
  .site-footer__inner {
    padding: 64px 20px 40px;
    gap: 48px;
    text-align: center;
  }

  .site-footer__row {
    grid-template-columns: 1fr;
    gap: 44px;
    justify-items: center;
  }

  .site-footer__brand {
    justify-items: center;
    text-align: center;
    gap: 24px;
  }

  .site-footer__social {
    justify-content: center;
    gap: 12px;
  }

  .site-footer__social a {
    min-width: 48px;
    min-height: 48px;
    padding: 8px;
  }

  .site-footer__block {
    width: 100%;
    text-align: center;
  }

  .site-footer__block ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .site-footer__block a,
  .site-footer__block span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 6px 0;
  }

  .site-footer__bottom {
    text-align: center;
    padding-top: 8px;
  }
}

.site-footer__row {
  display: grid;
  grid-template-columns: minmax(240px, 1.15fr) minmax(200px, 1fr) minmax(200px, 1fr);
  gap: 32px 56px;
  align-items: start;
}
@media (max-width: 900px) {
  .site-footer__row {
    grid-template-columns: 1fr 1fr;
    gap: 28px 32px;
  }
}
@media (max-width: 767px) {
  .site-footer__row {
    grid-template-columns: 1fr;
    gap: 36px;
    justify-items: center;
  }
}

.site-footer__brand {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-areas:
    "logo logo"
    "social trust";
  gap: 18px 20px;
  align-items: center;
  max-width: 300px;
}
@media (max-width: 900px) {
  .site-footer__brand {
    grid-column: 1 / -1;
    max-width: none;
  }
}
@media (max-width: 767px) {
  .site-footer__brand {
    grid-template-columns: 1fr;
    grid-template-areas:
      "logo"
      "social"
      "trust";
    justify-items: center;
    gap: 20px;
  }
}
.site-footer__logo {
  grid-area: logo;
}
.site-footer__logo a {
  display: inline-block;
}
.site-footer__logo img {
  display: block;
  height: 58px;
  width: auto;
  max-width: 200px;
}
@media (max-width: 767px) {
  .site-footer__logo img { height: 52px; }
}

.site-footer__social {
  grid-area: social;
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0;
}
.site-footer__social a,
.site-footer__social a:link,
.site-footer__social a:visited {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--site-accent);
  color: #fff !important;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
  opacity: 1 !important;
  visibility: visible !important;
}
.site-footer__social a:hover {
  background: var(--site-accent-hover);
  color: #fff !important;
}
.site-footer__social svg {
  width: 20px;
  height: 20px;
  fill: #fff !important;
  color: #fff !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* EVUL trust badge — circular clip (image file has white square corners) */
.site-footer__trust {
  grid-area: trust;
  margin: 0;
}

.site-footer__trust a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  padding: 8px;
  line-height: 0;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.site-footer__trust a:hover {
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.24);
}

.site-footer__trust img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .site-footer__trust a {
    width: 68px;
    height: 68px;
  }
}

.site-footer__block h2, .site-footer__block h4 {
  margin: 0 0 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.site-footer__block ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__block li {
  margin: 0 0 10px;
}
.site-footer__block a,
.site-footer__block span {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.5;
}
.site-footer__block a:hover {
  color: var(--site-accent);
}
.site-footer__block .icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: -2px;
  fill: rgba(255,255,255,0.7);
}

/* Guard: prevent oversized SVGs in footer links */
.site-footer__block a > svg:not(.icon) {
  width: 16px !important;
  height: 16px !important;
  margin-right: 8px;
  vertical-align: -2px;
  fill: rgba(255,255,255,0.7);
}

.site-footer__bottom {
  padding-top: 28px;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}
.site-footer__bottom p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}
/* ===== LÕPP: assets/css/site-header-footer.css ===== */
