.epoksera-site-footer {
  --bg-deep: #1a3548;
  --bg-deep-2: #244558;
  --accent: #d4894a;
  --accent-deep: #b86d2f;
  --accent-soft: #f0d4b5;
  --gold: #f0c896;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;
  position: relative;
  background: linear-gradient(160deg, var(--bg-deep) 0%, var(--bg-deep-2) 100%);
  color: rgba(255, 255, 255, 0.85);
  padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 64px) clamp(24px, 3vw, 32px);
  overflow: hidden;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.epoksera-site-footer *,
.epoksera-site-footer *::before,
.epoksera-site-footer *::after {
  box-sizing: border-box;
}

.epoksera-site-footer::before,
.epoksera-site-footer::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.epoksera-site-footer::before {
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 137, 74, 0.12) 0%, transparent 65%);
}

.epoksera-site-footer::after {
  bottom: -150px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(212, 137, 74, 0.06) 0%, transparent 70%);
}

.epoksera-footer-container {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.epoksera-footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: clamp(40px, 5vw, 64px);
  margin-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid rgba(240, 212, 181, 0.18);
  flex-wrap: wrap;
}

.epoksera-footer-cta-text h2 {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
  color: #fff;
  margin: 0 0 12px;
}

.epoksera-footer-cta-text h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.epoksera-footer-cta-text p {
  font-size: clamp(14px, 1.4vw, 16px);
  color: rgba(255, 255, 255, 0.7);
  max-width: 420px;
  line-height: 1.55;
  margin: 0;
}

.epoksera-footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--accent);
  color: #fff;
  padding: clamp(15px, 1.8vw, 18px) clamp(24px, 3vw, 32px);
  border-radius: var(--radius-pill);
  font-size: clamp(12px, 1.3vw, 14px);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 14px rgba(212, 137, 74, 0.3);
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}

.epoksera-footer-cta-btn:hover {
  background: var(--accent-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 137, 74, 0.4);
}

.epoksera-footer-cta-btn svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.epoksera-footer-cta-btn:hover svg {
  transform: translateX(6px);
}

.epoksera-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: clamp(32px, 4vw, 56px);
  margin-bottom: clamp(40px, 5vw, 64px);
}

.epoksera-brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.epoksera-brand-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-deep);
  flex-shrink: 0;
}

.epoksera-brand-text {
  font-family: "Fraunces", serif;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0;
}

.epoksera-brand-text em {
  display: block;
  font-style: italic;
  font-size: 13px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

.epoksera-footer-brand-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  max-width: 320px;
  margin: 0 0 28px;
}

.epoksera-contact-list,
.epoksera-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.epoksera-contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
}

.epoksera-contact-list li:hover {
  color: var(--gold);
}

.epoksera-icon-wrap {
  width: 36px;
  height: 36px;
  background: rgba(240, 212, 181, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-soft);
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.epoksera-contact-list li:hover .epoksera-icon-wrap {
  background: rgba(240, 212, 181, 0.2);
}

.epoksera-contact-list a {
  color: inherit;
  text-decoration: none;
}

.epoksera-footer-col h3 {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin: 0 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.epoksera-footer-col h3::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--accent);
}

.epoksera-footer-links li {
  margin-bottom: 14px;
}

.epoksera-footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 15px;
  font-family: "Fraunces", serif;
  font-weight: 400;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.epoksera-footer-links a::before {
  content: "";
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.epoksera-footer-links a:hover {
  color: #fff;
}

.epoksera-footer-links a:hover::before {
  width: 12px;
}

.epoksera-social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.epoksera-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(240, 212, 181, 0.15);
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.epoksera-social-link svg {
  color: var(--accent-soft);
  transition: color 0.3s ease;
}

.epoksera-social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.epoksera-social-link:hover svg {
  color: #fff;
}

.epoksera-footer-bottom {
  padding-top: clamp(20px, 2.5vw, 28px);
  border-top: 1px solid rgba(240, 212, 181, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.epoksera-legal-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.epoksera-legal-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.3s ease;
}

.epoksera-legal-links a:hover {
  color: var(--gold);
}

@media (max-width: 1024px) {
  .epoksera-footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }

  .epoksera-footer-brand {
    grid-column: 1 / -1;
    max-width: 600px;
  }
}

@media (max-width: 720px) {
  .epoksera-footer-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .epoksera-footer-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .epoksera-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }

  .epoksera-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .epoksera-site-footer {
    padding: 48px 16px 24px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .epoksera-footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .epoksera-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .epoksera-legal-links {
    gap: 16px;
  }

  .epoksera-brand-icon {
    width: 46px;
    height: 46px;
  }

  .epoksera-brand-text {
    font-size: 21px;
  }

  .epoksera-social-list {
    gap: 8px;
  }

  .epoksera-social-link {
    padding: 9px 14px;
    font-size: 13px;
  }
}

@media (hover: none) {
  .epoksera-footer-cta-btn:hover,
  .epoksera-social-link:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .epoksera-site-footer *,
  .epoksera-site-footer *::before,
  .epoksera-site-footer *::after {
    transition-duration: 0.01ms !important;
  }
}
