.mc-footer {
  background: var(--mc-warm-beige);
  color: var(--mc-taupe);
  min-height: 760px;
  padding: 64px 80px 28px;
}

.mc-footer__top {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 56px;
}

.mc-footer__newsletter {
  width: 380px;
  flex-shrink: 0;
}

.mc-footer__newsletter-title {
  font-family: var(--mc-font-serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 32px;
  color: var(--mc-text);
  margin-bottom: 16px;
}

.mc-footer__newsletter-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  color: var(--mc-taupe);
  max-width: 320px;
  margin-bottom: 28px;
}

.mc-footer__email-form {
  display: flex;
  align-items: center;
  width: 380px;
  height: 54px;
  background: var(--mc-bg);
  border-radius: 6px;
  padding-left: 20px;
  padding-right: 4px;
}

.mc-footer__email-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 16px;
  font-weight: 400;
  color: var(--mc-text);
  outline: none;
  font-family: var(--mc-font);
}

.mc-footer__email-input::placeholder {
  color: var(--mc-text-muted);
}

.mc-footer__email-btn {
  flex-shrink: 0;
  height: 46px;
  padding: 0 24px;
  border: none;
  border-radius: 6px;
  background: var(--mc-walnut);
  color: #F8F5F2;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--mc-font);
  cursor: pointer;
  transition: background 0.2s ease;
}

.mc-footer__email-btn:hover {
  background: var(--mc-walnut-hover);
}

.mc-footer__columns {
  display: flex;
  align-items: flex-start;
  gap: 56px;
}

.mc-footer__col {
  width: 180px;
}

.mc-footer__col-title {
  font-family: var(--mc-font-serif);
  font-size: 17px;
  font-weight: 500;
  line-height: 24px;
  color: var(--mc-text);
  margin-bottom: 28px;
}

.mc-footer__col-links {
  display: flex;
  flex-direction: column;
}

.mc-footer__col-link {
  font-size: 15px;
  font-weight: 400;
  line-height: 36px;
  color: var(--mc-taupe);
  transition: color 0.2s ease;
}

.mc-footer__col-link:hover {
  color: var(--mc-text);
}

.mc-footer__divider {
  max-width: 1440px;
  margin: 0 auto;
  height: 1px;
  background: var(--mc-border);
  margin-top: 80px;
  margin-bottom: 28px;
}

.mc-footer__bottom {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mc-footer__selector {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 320px;
  height: 48px;
  background: transparent;
  border: 1px solid var(--mc-border);
  border-radius: 6px;
  padding-left: 20px;
  padding-right: 20px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.mc-footer__selector:hover {
  border-color: var(--mc-taupe);
}

.mc-footer__flag {
  flex-shrink: 0;
  border-radius: 2px;
}

.mc-footer__selector-text {
  flex: 1;
  font-size: 16px;
  font-weight: 400;
  color: var(--mc-text);
}

.mc-footer__chevron {
  flex-shrink: 0;
}

.mc-footer__socials {
  display: flex;
  align-items: center;
  gap: 36px;
}

.mc-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mc-taupe);
  transition: color 0.2s ease;
}

.mc-footer__social-link:hover {
  color: var(--mc-walnut);
}

.mc-footer__social-icon {
  width: 22px;
  height: 22px;
}

.mc-footer__copy {
  font-size: 13px;
  font-weight: 400;
  color: var(--mc-text-muted);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .mc-footer {
    padding: 40px 20px 20px;
    min-height: auto;
  }
  .mc-footer__top {
    flex-direction: column;
    gap: 40px;
  }
  .mc-footer__newsletter {
    width: 100%;
  }
  .mc-footer__newsletter-desc {
    max-width: none;
  }
  .mc-footer__email-form {
    width: 100%;
  }
  .mc-footer__columns {
    flex-wrap: wrap;
    gap: 32px;
  }
  .mc-footer__col {
    width: calc(50% - 16px);
  }
  .mc-footer__divider {
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .mc-footer__bottom {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .mc-footer__selector {
    width: 100%;
  }
  .mc-footer__socials {
    gap: 24px;
  }
  .mc-footer__copy {
    white-space: normal;
  }
}
